From 1d1a6867589a8e71755624e1e9d9e8b95a5a1156 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Tue, 19 Jul 2011 23:00:41 +0200 Subject: Calm down kDebug messages --- src/opensearch/suggestionparser.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/opensearch/suggestionparser.cpp') diff --git a/src/opensearch/suggestionparser.cpp b/src/opensearch/suggestionparser.cpp index 0e390d99..6b467353 100644 --- a/src/opensearch/suggestionparser.cpp +++ b/src/opensearch/suggestionparser.cpp @@ -107,7 +107,7 @@ ResponseList JSONParser::parse(const QByteArray &resp) if(response.isEmpty()) { - kDebug() << "RESPONSE IS EMPTY"; + // RESPONSE IS EMPTY return ResponseList(); } @@ -115,14 +115,14 @@ ResponseList JSONParser::parse(const QByteArray &resp) || !response.endsWith(QL1C(']')) ) { - kDebug() << "RESPONSE is NOT well FORMED"; + // RESPONSE is NOT well FORMED return ResponseList(); } // Evaluate the JSON response using QtScript. if(!m_reader.canEvaluate(response)) { - kDebug() << "m_reader cannot evaluate the response"; + // m_reader cannot evaluate the response return ResponseList(); } @@ -130,7 +130,7 @@ ResponseList JSONParser::parse(const QByteArray &resp) if(!responseParts.property(1).isArray()) { - kDebug() << "RESPONSE is not an array"; + // RESPONSE is not an array return ResponseList(); } -- cgit v1.2.1