Add time stamp to rig control error messages details

This commit is contained in:
Bill Somerville 2021-01-16 23:35:53 +00:00
parent e18082caab
commit 2d4256d593
No known key found for this signature in database
GPG Key ID: D864B06D1E81618F
1 changed files with 2 additions and 1 deletions

View File

@ -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 ();