Fix debugging output.
This commit is contained in:
parent
3621777827
commit
b4457d8815
40
utils.cpp
40
utils.cpp
@ -62,20 +62,34 @@ void Utils::printCriticalErrorMsg(QStringList const &errorMsg) {
|
|||||||
qCritical() << QString(80, 'E');
|
qCritical() << QString(80, 'E');
|
||||||
}
|
}
|
||||||
|
|
||||||
void Utils::printUpdateStatusMsg(QDebug &debug, QStringList const &updateMsg) {
|
void Utils::printUpdateStatusMsg(QDebug debug, QStringList const &updateMsg) {
|
||||||
debug << QString(80, 'U');
|
//if (updateMsg.size() > 1) {
|
||||||
|
// qCritical() << QString(80, 'U');
|
||||||
|
//}
|
||||||
|
|
||||||
|
Q_UNUSED(debug);
|
||||||
|
|
||||||
for (int i = 0; i < updateMsg.size(); ++i) {
|
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) {
|
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) {
|
for (int i = 0; i < updateMsg.size(); ++i) {
|
||||||
qCritical() << updateMsg.at(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) {
|
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');
|
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) {
|
bool upper, bool lower) {
|
||||||
if (upper) debug << QString(80, 'U');
|
if (upper) debug << QString(80, 'U');
|
||||||
|
|
||||||
debug << updateMsg;
|
qInfo() << updateMsg;
|
||||||
|
|
||||||
if (lower) debug << QString(80, 'U');
|
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) {
|
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) {
|
for (int i = 0; i < infoMsg.size(); ++i) {
|
||||||
qCritical() << infoMsg.at(i);
|
qCritical() << infoMsg.at(i);
|
||||||
}
|
}
|
||||||
qCritical() << QString(80, 'I');
|
|
||||||
|
//if (infoMsg.size() > 1) {
|
||||||
|
// qCritical() << QString(80, 'I');
|
||||||
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Utils::printLineEditInfo(QStringList const &lines) {
|
void Utils::printLineEditInfo(QStringList const &lines) {
|
||||||
|
4
utils.h
4
utils.h
@ -17,10 +17,10 @@ namespace Utils {
|
|||||||
void printCriticalErrorMsg(QStringList const &errorMsg);
|
void printCriticalErrorMsg(QStringList const &errorMsg);
|
||||||
void printInfoMsg(QString const &infoMsg, bool upper=false, bool lower=false);
|
void printInfoMsg(QString const &infoMsg, bool upper=false, bool lower=false);
|
||||||
void printInfoMsg(QStringList const &infoMsg);
|
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(QStringList const &updateMsg);
|
||||||
void printUpdateStatusMsg(QString const &updateMsg, bool upper=false, bool lower=false);
|
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);
|
void printLineEditInfo(QStringList const &lines);
|
||||||
QString getTariffLoadTime(QString fileName);
|
QString getTariffLoadTime(QString fileName);
|
||||||
QString rstrip(QString const &str);
|
QString rstrip(QString const &str);
|
||||||
|
Loading…
Reference in New Issue
Block a user