summaryrefslogtreecommitdiff
path: root/src/logbuffer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/logbuffer.cpp')
-rw-r--r--src/logbuffer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logbuffer.cpp b/src/logbuffer.cpp
index f930cf10..6f3f640f 100644
--- a/src/logbuffer.cpp
+++ b/src/logbuffer.cpp
@@ -131,7 +131,7 @@ void LogBuffer::log(QtMsgType type, const char *message)
if (!s_Instance.isNull()) {
s_Instance->logMessage(type, message);
}
- fprintf(stdout, "[%c] %s: %s\n", msgTypeID(type), qPrintable(QTime::currentTime().toString()), message);
+ fprintf(stdout, "%s [%c] %s\n", qPrintable(QTime::currentTime().toString()), msgTypeID(type), message);
fflush(stdout);
}