From f04b19ddfa76df894eb5fa32c02bacbe846a1070 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Tue, 24 Nov 2009 08:53:47 +0000 Subject: [PATCH] - Remove verbose debug info --- src/httpconnection.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/httpconnection.cpp b/src/httpconnection.cpp index 8a7d4b93a..2b6ff86e5 100644 --- a/src/httpconnection.cpp +++ b/src/httpconnection.cpp @@ -158,7 +158,6 @@ void HttpConnection::respond() } if(list.size() > 2) { if(list[1] == "propertiesGeneral") { - qDebug("Web UI Asked for general properties data"); QString hash = list[2]; respondGenPropertiesJson(hash); return; @@ -219,10 +218,8 @@ void HttpConnection::respondJson() } void HttpConnection::respondGenPropertiesJson(QString hash) { - qDebug("Torrent hash is %s", hash.toLocal8Bit().data()); EventManager* manager = parent->eventManager(); QString string = json::toJson(manager->getPropGeneralInfo(hash)); - qDebug("GenProperties JSON is %s", string.toLocal8Bit().data()); generator.setStatusLine(200, "OK"); generator.setContentTypeByExt("js"); generator.setMessage(string);