We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8388885 commit 7a01a73Copy full SHA for 7a01a73
src/texstudio.cpp
@@ -69,6 +69,7 @@
69
#include "symbollistmodel.h"
70
#include "symbolwidget.h"
71
#include "execprogram.h"
72
+#include <QTime>
73
74
#include <QScreen>
75
@@ -6342,7 +6343,8 @@ void Texstudio::processNotification(const QString &message)
6342
6343
{
6344
if (message.startsWith(tr("Error:")))
6345
outputView->showPage(outputView->MESSAGES_PAGE);
- outputView->insertMessageLine(message + "\n");
6346
+ QString timeInfo = QTime::currentTime().toString("hh:mm:ss");
6347
+ outputView->insertMessageLine(timeInfo + " " + message + "\n");
6348
}
6349
/*!
6350
* \brief clear log view in panel
0 commit comments