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.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/Tools/ProtoProxy/ProtoProxy.cpp b/Tools/ProtoProxy/ProtoProxy.cpp
index 2d27d7556..06a486778 100644
--- a/Tools/ProtoProxy/ProtoProxy.cpp
+++ b/Tools/ProtoProxy/ProtoProxy.cpp
@@ -15,11 +15,17 @@
int main(int argc, char ** argv)
{
// Initialize logging subsystem:
- cLogger::InitiateMultithreading();
auto consoleLogListener = MakeConsoleListener(false);
- auto fileLogListener = new cFileListener();
- cLogger::GetInstance().AttachListener(consoleLogListener);
- cLogger::GetInstance().AttachListener(fileLogListener);
+ auto consoleAttachment = cLogger::GetInstance().AttachListener(std::move(consoleLogListener));
+ auto fileLogListenerRet = MakeFileListener();
+ if (!fileLogListenerRet.first)
+ {
+ LOGERROR("Failed to open log file, aborting");
+ return EXIT_FAILURE;
+ }
+ auto fileAttachment = cLogger::GetInstance().AttachListener(std::move(fileLogListenerRet.second));
+
+ cLogger::InitiateMultithreading();
int ListenPort = (argc > 1) ? atoi(argv[1]) : 25564;
int ConnectPort = (argc > 2) ? atoi(argv[2]) : 25565;