From e0fcaf3a64af76f9a400de28534df0b60ab300f7 Mon Sep 17 00:00:00 2001 From: krzys-h Date: Sat, 30 Jan 2016 16:51:09 +0100 Subject: [PATCH] Disable logging to file This causes the log to not be displayed in console, and the commit that was supposed to fix that was reverted because it fails to compile on our build server for some reason --- src/app/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/main.cpp b/src/app/main.cpp index ecfd2530..4bbe9112 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -96,7 +96,7 @@ int main(int argc, char *argv[]) auto systemUtils = CSystemUtils::Create(); // platform-specific utils systemUtils->Init(); - logger.SetOutputFile(systemUtils->GetSaveDir() + "/log.txt"); + //logger.SetOutputFile(systemUtils->GetSaveDir() + "/log.txt"); // Workaround for character encoding in argv on Windows #if PLATFORM_WINDOWS