From ce047dd60f70b31150551e78def2bdb0e70366d4 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Fri, 29 Mar 2019 11:02:58 +1100 Subject: [PATCH] normalized debug message order --- global/debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global/debug.cpp b/global/debug.cpp index b64e38ecd..87d892f2c 100644 --- a/global/debug.cpp +++ b/global/debug.cpp @@ -97,7 +97,7 @@ void debug_message_handler(QtMsgType type, const QMessageLogContext &context, co debug_stream << QString("[%1] %2 (%3:%4, %5)\n") .arg(msgTag, localMsg, context.file, QString::number(context.line), context.function); } - debug_info.prepend(QString("[%2] %3 (%4:%5, %6)
") + debug_info.append(QString("[%2] %3 (%4:%5, %6)
") .arg(fontColor, msgTag, localMsg, context.file, QString::number(context.line), context.function)); fflush(stderr); if (olive::DebugDialog != nullptr && olive::DebugDialog->isVisible()) {