From 6f0665de4270e5b7ef7ba74586f487da7327d6ed Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 21 Dec 2017 21:22:03 +0000 Subject: [PATCH] MInor diagnostic tweaks. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8357 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 3f8f995bf..25a462a77 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -7411,7 +7411,7 @@ void MainWindow::foxTxSequencer() m_hisGrid=m_foxQSO[hc1].grid; m_rptSent=m_foxQSO[hc1].sent; m_rptRcvd=m_foxQSO[hc1].rcvd; - qDebug() << "Logged by Fox:" << islot << m_hisCall << m_hisGrid << m_rptSent + qDebug() << "Fox Logged :" << islot << m_hisCall << m_hisGrid << m_rptSent << m_rptRcvd << m_lastBand; QDateTime logTime {QDateTime::currentDateTimeUtc ()}; QString logLine=logTime.toString("yyyy-MM-dd hh:mm") + " " + m_hisCall + @@ -7525,5 +7525,6 @@ void MainWindow::foxGenWaveform(int i,QString fm) fm=fm.mid(0,40); foxcom_.i3bit[i]=0; if(fm.indexOf("<")>0) foxcom_.i3bit[i]=1; - strncpy(&foxcom_.cmsg[i][0], fm.toLatin1(),40); //Copy this message into cmsg[i] + strncpy(&foxcom_.cmsg[i][0],fm.toLatin1(),40); //Copy this message into cmsg[i] + qDebug() << "Fox Transmitting:" << i << fm.trimmed(); }