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 a21a7ef commit 5260732Copy full SHA for 5260732
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
@@ -6305,7 +6306,8 @@ void Texstudio::processNotification(const QString &message)
6305
6306
{
6307
if (message.startsWith(tr("Error:")))
6308
outputView->showPage(outputView->MESSAGES_PAGE);
- outputView->insertMessageLine(message + "\n");
6309
+ QString timeInfo = QTime::currentTime().toString("hh:mm:ss");
6310
+ outputView->insertMessageLine(timeInfo + " " + message + "\n");
6311
}
6312
/*!
6313
* \brief clear log view in panel
0 commit comments