Don't abort in the message logger

Let the app do whatever it would do naturally
This commit is contained in:
Tobias Fella
2023-10-07 18:26:02 +02:00
parent 19e197e0ec
commit 4449678b74

View File

@@ -197,7 +197,6 @@ void messageHandler(QtMsgType type, const QMessageLogContext &context, const QSt
break;
case QtFatalMsg:
sInstance()->log(QtInfoMsg, context, message);
abort();
}
}