From 0538c9c3e80914646f154f48b75e51c9c8277f72 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 2 Nov 2008 09:30:35 +0000 Subject: [PATCH] - Removed some debug --- src/bittorrent.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/bittorrent.cpp b/src/bittorrent.cpp index 1b2272b2a..b3436acf5 100644 --- a/src/bittorrent.cpp +++ b/src/bittorrent.cpp @@ -1323,16 +1323,13 @@ void bittorrent::saveFastResumeData() { "torrents to save resume data for" << std::endl; break; } - qDebug("Received an alert..."); save_resume_data_alert const* rd = dynamic_cast(a); if (!rd) { s->pop_alert(); continue; } - qDebug("Alert is for resume data"); --num_resume_data; if (!rd->resume_data) continue; - qDebug("saving resume data: %d", num_resume_data); QDir torrentBackup(misc::qBittorrentPath() + "BT_backup"); QTorrentHandle h(rd->handle); QFile::remove(torrentBackup.path()+QDir::separator()+ h.hash() + ".fastresume");