From 889bc8842c8c6c11e7625d54f804ff79056c616c Mon Sep 17 00:00:00 2001 From: Guy Scharf Date: Fri, 9 Apr 2021 14:03:37 +1000 Subject: [PATCH] Logger.cpp: Add #define to allow all debug messages to be seen I have DEFINES+=HARDLOG set up in my QT Debug configurations so I can always see messages in the event of a crash. --- oscar/logger.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/oscar/logger.cpp b/oscar/logger.cpp index 6594f3e6..e3f4d108 100644 --- a/oscar/logger.cpp +++ b/oscar/logger.cpp @@ -70,7 +70,9 @@ void initializeLogger() s_LoggerRunning.lock(); // wait until the thread begins running s_LoggerRunning.unlock(); // we no longer need the lock } +#ifndef HARDLOG qInstallMessageHandler(MyOutputHandler); // NOTE: comment this line out when debugging a crash, otherwise the deferred output will mislead you. +#endif if (b) { qDebug() << "Started logging thread"; } else {