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 a0aaab6 commit 91f6399Copy full SHA for 91f6399
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
@@ -6464,7 +6465,8 @@ void Texstudio::processNotification(const QString &message)
6464
6465
{
6466
if (message.startsWith(tr("Error:")))
6467
outputView->showPage(outputView->MESSAGES_PAGE);
- outputView->insertMessageLine(message + "\n");
6468
+ QString timeInfo = QTime::currentTime().toString("hh:mm:ss");
6469
+ outputView->insertMessageLine(timeInfo + " " + message + "\n");
6470
}
6471
/*!
6472
* \brief clear log view in panel
0 commit comments