From b4457d8815125ba24914f1197b029681aa9a5dd0 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Fri, 3 Nov 2023 13:46:23 +0100 Subject: [PATCH] Fix debugging output. --- utils.cpp | 40 ++++++++++++++++++++++++++++++---------- utils.h | 4 ++-- 2 files changed, 32 insertions(+), 12 deletions(-) diff --git a/utils.cpp b/utils.cpp index a5302be..870af4e 100644 --- a/utils.cpp +++ b/utils.cpp @@ -62,20 +62,34 @@ void Utils::printCriticalErrorMsg(QStringList const &errorMsg) { qCritical() << QString(80, 'E'); } -void Utils::printUpdateStatusMsg(QDebug &debug, QStringList const &updateMsg) { - debug << QString(80, 'U'); +void Utils::printUpdateStatusMsg(QDebug debug, QStringList const &updateMsg) { + //if (updateMsg.size() > 1) { + // qCritical() << QString(80, 'U'); + //} + + Q_UNUSED(debug); + for (int i = 0; i < updateMsg.size(); ++i) { - debug << updateMsg.at(i); + qInfo() << updateMsg.at(i); } - debug << QString(80, 'U'); + + //if (updateMsg.size() > 1) { + // qCritical() << QString(80, 'U'); + //} } void Utils::printUpdateStatusMsg(QStringList const &updateMsg) { - qCritical() << QString(80, 'U'); + //if (updateMsg.size() > 1) { + // qCritical() << QString(80, 'U'); + //} + for (int i = 0; i < updateMsg.size(); ++i) { qCritical() << updateMsg.at(i); } - qCritical() << QString(80, 'U'); + + //if (updateMsg.size() > 1) { + // qCritical() << QString(80, 'U'); + //} } void Utils::printUpdateStatusMsg(QString const &updateMsg, bool upper, bool lower) { @@ -86,11 +100,11 @@ void Utils::printUpdateStatusMsg(QString const &updateMsg, bool upper, bool lowe if (lower) qCritical() << QString(80, 'U'); } -void Utils::printUpdateStatusMsg(QDebug &debug, QString const &updateMsg, +void Utils::printUpdateStatusMsg(QDebug debug, QString const &updateMsg, bool upper, bool lower) { if (upper) debug << QString(80, 'U'); - debug << updateMsg; + qInfo() << updateMsg; if (lower) debug << QString(80, 'U'); @@ -105,11 +119,17 @@ void Utils::printInfoMsg(QString const &infoMsg, bool upper, bool lower) { } void Utils::printInfoMsg(QStringList const &infoMsg) { - qCritical() << QString(80, 'I'); + //if (infoMsg.size() > 1) { + // qCritical() << QString(80, 'I'); + //} + for (int i = 0; i < infoMsg.size(); ++i) { qCritical() << infoMsg.at(i); } - qCritical() << QString(80, 'I'); + + //if (infoMsg.size() > 1) { + // qCritical() << QString(80, 'I'); + //} } void Utils::printLineEditInfo(QStringList const &lines) { diff --git a/utils.h b/utils.h index 8c979ce..1e77a17 100644 --- a/utils.h +++ b/utils.h @@ -17,10 +17,10 @@ namespace Utils { void printCriticalErrorMsg(QStringList const &errorMsg); void printInfoMsg(QString const &infoMsg, bool upper=false, bool lower=false); void printInfoMsg(QStringList const &infoMsg); - void printUpdateStatusMsg(QDebug &debug, QStringList const &updateMsg); + void printUpdateStatusMsg(QDebug debug, QStringList const &updateMsg); void printUpdateStatusMsg(QStringList const &updateMsg); void printUpdateStatusMsg(QString const &updateMsg, bool upper=false, bool lower=false); - void printUpdateStatusMsg(QDebug &debug, QString const &updateMsg, bool upper=false, bool lower=false); + void printUpdateStatusMsg(QDebug debug, QString const &updateMsg, bool upper=false, bool lower=false); void printLineEditInfo(QStringList const &lines); QString getTariffLoadTime(QString fileName); QString rstrip(QString const &str);