Restored the default behaviour of exiting the app after a fatal error log. I didn't see fatal log messages, so this should be safe.

This commit is contained in:
Luis Ángel San Martín 2016-06-17 19:46:45 +02:00
parent 770aeb2533
commit 5ae7e9fd3f

View File

@ -62,8 +62,9 @@ void Logger::msgHandler(const QtMsgType type, const QString &message, const QStr
}
// Abort the program after logging a fatal message
if (type>=QtFatalMsg) {
//abort();
if (type>=QtFatalMsg)
{
abort();
}
recursiveMutex.unlock();