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 3ba7966 commit 536070aCopy full SHA for 536070a
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
@@ -6253,7 +6254,8 @@ void Texstudio::processNotification(const QString &message)
6253
6254
{
6255
if (message.startsWith(tr("Error:")))
6256
outputView->showPage(outputView->MESSAGES_PAGE);
- outputView->insertMessageLine(message + "\n");
6257
+ QString timeInfo = QTime::currentTime().toString("hh:mm:ss");
6258
+ outputView->insertMessageLine(timeInfo + " " + message + "\n");
6259
}
6260
/*!
6261
* \brief clear log view in panel
0 commit comments