Removed from callsign from message save log...redundant

This commit is contained in:
Jordan Sherer 2018-08-28 21:06:49 -04:00
parent f06df77db2
commit d1b239201c

View File

@ -9194,12 +9194,11 @@ void MainWindow::processCommandActivity() {
if (f.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Append)) {
QTextStream out(&f);
auto df = dialFrequency();
auto text = QString("%1\t%2MHz\t%3Hz\t%4dB\t%5: %6");
auto text = QString("%1\t%2MHz\t%3Hz\t%4dB\t%5");
text = text.arg(d.utcTimestamp.toString());
text = text.arg(Radio::frequency_MHz_string(df));
text = text.arg(d.freq);
text = text.arg(Varicode::formatSNR(d.snr));
text = text.arg(d.from);
text = text.arg(d.text);
out << text << endl;
f.close();