summaryrefslogtreecommitdiffstats
path: root/Tools/ProtoProxy/ProtoProxy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/ProtoProxy/ProtoProxy.cpp')
-rw-r--r--Tools/ProtoProxy/ProtoProxy.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tools/ProtoProxy/ProtoProxy.cpp b/Tools/ProtoProxy/ProtoProxy.cpp
index 2724ef704..3f427f83f 100644
--- a/Tools/ProtoProxy/ProtoProxy.cpp
+++ b/Tools/ProtoProxy/ProtoProxy.cpp
@@ -5,6 +5,8 @@
#include "Globals.h"
#include "Server.h"
+#include "../../src/Logger.h"
+#include "../../src/LoggerListeners.h"
@@ -12,8 +14,16 @@
int main(int argc, char ** argv)
{
+ // Initialize logging subsystem:
+ cLogger::InitiateMultithreading();
+ auto consoleLogListener = MakeConsoleListener();
+ auto fileLogListener = new cFileListener();
+ cLogger::GetInstance().AttachListener(consoleLogListener);
+ cLogger::GetInstance().AttachListener(fileLogListener);
+
int ListenPort = (argc > 1) ? atoi(argv[1]) : 25564;
int ConnectPort = (argc > 2) ? atoi(argv[2]) : 25565;
+ printf("Initializing ProtoProxy. Listen port %d, connect port %d.\n", ListenPort, ConnectPort);
cServer Server;
int res = Server.Init(ListenPort, ConnectPort);
if (res != 0)