diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-07-19 23:00:41 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-07-19 23:00:41 +0200 |
commit | 1d1a6867589a8e71755624e1e9d9e8b95a5a1156 (patch) | |
tree | 35f54c5ad7edfb58af4c3a1db3e0dc8a83da9af6 /src/iconmanager.cpp | |
parent | Added UI option to configure the "Do Not Track" feature (diff) | |
download | rekonq-1d1a6867589a8e71755624e1e9d9e8b95a5a1156.tar.xz |
Calm down kDebug messages
Diffstat (limited to 'src/iconmanager.cpp')
-rw-r--r-- | src/iconmanager.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
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); |