From ddfcccab22059be2a82978aca1981a7eefbd6581 Mon Sep 17 00:00:00 2001 From: f4exb Date: Wed, 25 Apr 2018 18:06:47 +0200 Subject: [PATCH] Benchmarking: use info level message instead of debug to show results --- sdrbench/mainbench.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sdrbench/mainbench.cpp b/sdrbench/mainbench.cpp index 5477d1246..43590c8c4 100644 --- a/sdrbench/mainbench.cpp +++ b/sdrbench/mainbench.cpp @@ -237,7 +237,7 @@ void MainBench::decimateFF(const float *buf, int len) void MainBench::printResults(const QString& prefix, qint64 nsecs) { double ratekSs = (m_parser.getNbSamples()*m_parser.getRepetition() / (double) nsecs) * 1e6; - QDebug debug = qDebug(); - debug.noquote(); - debug << tr("%1: ran test in %L2 ns - sample rate: %3 kS/s").arg(prefix).arg(nsecs).arg(ratekSs); + QDebug info = qInfo(); + info.noquote(); + info << tr("%1: ran test in %L2 ns - sample rate: %3 kS/s").arg(prefix).arg(nsecs).arg(ratekSs); }