From 4c24fc9c909bfb9ccc32f3691450b117292c9b1d Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Fri, 18 May 2018 14:18:30 +0200 Subject: Don't use color on windows was the idea. --- common/log.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/log.cpp b/common/log.cpp index 007b749..cf2871e 100644 --- a/common/log.cpp +++ b/common/log.cpp @@ -407,9 +407,9 @@ QDebug Sink::Log::debugStream(DebugLevel debugLevel, int line, const char *file, bool showFunction = debugOutput.isEmpty() ? false : caseInsensitiveContains("function", debugOutput); bool showProgram = debugOutput.isEmpty() ? false : caseInsensitiveContains("application", debugOutput); #ifdef Q_OS_WIN - bool useColor = true; -#else bool useColor = false; +#else + bool useColor = true; #endif bool multiline = false; -- cgit v1.2.3