mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
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:
parent
a02981f6d1
commit
889bc8842c
@ -70,7 +70,9 @@ void initializeLogger()
|
|||||||
s_LoggerRunning.lock(); // wait until the thread begins running
|
s_LoggerRunning.lock(); // wait until the thread begins running
|
||||||
s_LoggerRunning.unlock(); // we no longer need the lock
|
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.
|
qInstallMessageHandler(MyOutputHandler); // NOTE: comment this line out when debugging a crash, otherwise the deferred output will mislead you.
|
||||||
|
#endif
|
||||||
if (b) {
|
if (b) {
|
||||||
qDebug() << "Started logging thread";
|
qDebug() << "Started logging thread";
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user