mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 03:58:07 +02:00
Restore setup of flush timer that was inadvertently lost
This commit is contained in:
parent
ed3347a89b
commit
ce5f6da6ca
1 changed files with 3 additions and 0 deletions
|
@ -36,6 +36,9 @@ LogHandler::LogHandler() {
|
||||||
// when the log handler is first setup we should print our timezone
|
// when the log handler is first setup we should print our timezone
|
||||||
QString timezoneString = "Time zone: " + QDateTime::currentDateTime().toString("t");
|
QString timezoneString = "Time zone: " + QDateTime::currentDateTime().toString("t");
|
||||||
printMessage(LogMsgType::LogInfo, QMessageLogContext(), timezoneString);
|
printMessage(LogMsgType::LogInfo, QMessageLogContext(), timezoneString);
|
||||||
|
|
||||||
|
// make sure we setup the repeated message flusher, but do it on the LogHandler thread
|
||||||
|
QMetaObject::invokeMethod(this, "setupRepeatedMessageFlusher");
|
||||||
}
|
}
|
||||||
|
|
||||||
LogHandler::~LogHandler() {
|
LogHandler::~LogHandler() {
|
||||||
|
|
Loading…
Reference in a new issue