summaryrefslogtreecommitdiff
path: root/csgo-loader/csgo-server/Networking/TCPServer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'csgo-loader/csgo-server/Networking/TCPServer.hpp')
-rw-r--r--csgo-loader/csgo-server/Networking/TCPServer.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/csgo-loader/csgo-server/Networking/TCPServer.hpp b/csgo-loader/csgo-server/Networking/TCPServer.hpp
index 388bdc2..092254d 100644
--- a/csgo-loader/csgo-server/Networking/TCPServer.hpp
+++ b/csgo-loader/csgo-server/Networking/TCPServer.hpp
@@ -29,7 +29,7 @@ namespace Networking
TCPConnection(SOCKET Connection, const char *IpAddress, Wrapper::Encryption &RSA) :
m_Encryption(RSA), m_Socket(Connection), m_IpAddress(IpAddress)
{
- printf("[=>] %s connected!\n", IpAddress);
+ printf("[ => ] %s connected!\n", IpAddress);
}
// Release the connection once it goes out of scope.