From bf0ebf227b56694fe48ef9759715b383a50bb69b Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Tue, 7 Aug 2018 13:42:55 -0400 Subject: [PATCH] Write to ft8call.log too --- logqso.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/logqso.cpp b/logqso.cpp index 44ee07c..9ad364c 100644 --- a/logqso.cpp +++ b/logqso.cpp @@ -139,8 +139,8 @@ void LogQSO::accept() } } -//Log this QSO to file "wsjtx.log" - static QFile f {QDir {QStandardPaths::writableLocation (QStandardPaths::DataLocation)}.absoluteFilePath ("wsjtx.log")}; +//Log this QSO to file "ft8call.log" + static QFile f {QDir {QStandardPaths::writableLocation (QStandardPaths::DataLocation)}.absoluteFilePath ("ft8call.log")}; if(!f.open(QIODevice::Text | QIODevice::Append)) { MessageBox::warning_message (this, tr ("Log file error"), tr ("Cannot open \"%1\" for append").arg (f.fileName ()),