From 2d4256d593642ece7e3d9fe2c395f200b356fae8 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Sat, 16 Jan 2021 23:35:53 +0000 Subject: [PATCH] Add time stamp to rig control error messages details --- widgets/mainwindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index bec116e6e..669ed3fc7 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -7248,7 +7248,8 @@ void MainWindow::rigFailure (QString const& reason) else { if (m_splash && m_splash->isVisible ()) m_splash->hide (); - m_rigErrorMessageBox.setDetailedText (reason); + m_rigErrorMessageBox.setDetailedText (reason + "\n\nTimestamp: " + + QDateTime::currentDateTimeUtc ().toString (Qt::ISODateWithMs)); // don't call slot functions directly to avoid recursion m_rigErrorMessageBox.exec ();