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/iconmanager.cpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/iconmanager.cpp') diff --git a/src/iconmanager.cpp b/src/iconmanager.cpp index 18e31f6e..a96962c7 100644 --- a/src/iconmanager.cpp +++ b/src/iconmanager.cpp @@ -99,7 +99,6 @@ void IconManager::provideIcon(QWebPage *page, const KUrl &url, bool notify) // provide icons just for http/https sites if(!url.scheme().startsWith(QL1S("http"))) { - kDebug() << "No http/https site..."; if(notify) emit iconChanged(); return; @@ -108,7 +107,6 @@ void IconManager::provideIcon(QWebPage *page, const KUrl &url, bool notify) // do not load new icons in private browsing.. if(QWebSettings::globalSettings()->testAttribute(QWebSettings::PrivateBrowsingEnabled)) { - kDebug() << "Private browsing, private icon..."; if(notify) emit iconChanged(); return; @@ -117,7 +115,6 @@ void IconManager::provideIcon(QWebPage *page, const KUrl &url, bool notify) // check if icon exists if(!KMimeType::favIconForUrl(url).isEmpty()) { - kDebug() << "icon JUST present. Aborting..."; if(notify) emit iconChanged(); return; @@ -145,11 +142,8 @@ void IconManager::provideIcon(QWebPage *page, const KUrl &url, bool notify) : KUrl(rootUrlString + QL1C('/') + relUrlString) ; } - kDebug() << "ICON URL: " << faviconUrl; - // dest url KUrl destUrl(_faviconsDir + url.host() + QL1S(".png")); - kDebug() << "DEST URL: " << destUrl; // download icon KIO::FileCopyJob *job = KIO::file_copy(faviconUrl, destUrl, -1, KIO::HideProgressInfo); -- cgit v1.2.1