From caa8c5d68d52d092ddc208607ae2c4b89b1a6880 Mon Sep 17 00:00:00 2001 From: acetone Date: Sat, 4 Dec 2021 13:29:19 -0500 Subject: [PATCH] debug output deleted --- global.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/global.cpp b/global.cpp index 70743ae..6334d4a 100644 --- a/global.cpp +++ b/global.cpp @@ -24,9 +24,7 @@ QString getValue(const QString &string, const QString &key, Type type) } QString result {string}; - qInfo() << "K0:" << key << "\n" << result; result.remove(QRegularExpression("^.*"+key+"\\s*=", QRegularExpression::DotMatchesEverythingOption)); - qInfo() << "K1:" << key << "\n" << result; QString separator {"\n"}; if (type == eForTriggers) { @@ -39,7 +37,6 @@ QString getValue(const QString &string, const QString &key, Type type) if (valueEnd != -1) { result.remove(valueEnd, result.size()-valueEnd); } - qInfo() << "K2:" << key << "\n" << result; if (type == eForWeb) { result = QByteArray::fromPercentEncoding(result.toUtf8()); result.replace('+', ' ');