From 6f9c62172bb1f6679f733f05e10e712ca7bc3c47 Mon Sep 17 00:00:00 2001 From: Creaprog Date: Sun, 15 Feb 2015 20:39:53 +0100 Subject: [PATCH] Fixed Server.cpp --- Tools/ProtoProxy/Server.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Tools/ProtoProxy/Server.cpp b/Tools/ProtoProxy/Server.cpp index 2932b37e3..e27c86e10 100644 --- a/Tools/ProtoProxy/Server.cpp +++ b/Tools/ProtoProxy/Server.cpp @@ -6,7 +6,6 @@ #include "Globals.h" #include "Server.h" #include "Connection.h" -#include "Logger.h" @@ -34,7 +33,7 @@ int cServer::Init(short a_ListenPort, short a_ConnectPort) } #endif // _WIN32 - LOG("Generating protocol encryption keypair..."); + LOGINFO("Generating protocol encryption keypair..."); m_PrivateKey.Generate(); m_PublicKeyDER = m_PrivateKey.GetPubKeyDER(); @@ -98,10 +97,10 @@ void cServer::Run(void) printf("accept returned an error: %d; bailing out.\n", SocketError); return; } - LOG("Client connected, proxying..."); + LOGINFO("Client connected, proxying..."); cConnection Connection(client, *this); Connection.Run(); - LOG("Client disconnected. Ready for another connection."); + LOGINFO("Client disconnected. Ready for another connection."); } }