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.
This commit is contained in:
Guy Scharf 2021-04-09 14:03:37 +10:00
parent a02981f6d1
commit 889bc8842c

View File

@ -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 {