From da244d7ef2690a05a69cdf6ef231876c98a42dc4 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Tue, 18 Sep 2007 22:41:23 +0000 Subject: [PATCH] - Added more debug when we get a file_error --- TODO | 5 ++++- src/bittorrent.cpp | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/TODO b/TODO index 389086034..a016c6dcb 100644 --- a/TODO +++ b/TODO @@ -41,11 +41,14 @@ - Allow to limit the number of downloading torrents simultaneously (other are paused until a download finishes) - Improve search plugin install (choose in a list taken from plugins.qbittorrent.org) - Display the number of DHT node if possible +- Display in torrent addition dialog: + * free disk space on selected drive + * free disk space after torrent download (and/or torrent size) - Allow to change action on double-click -> in download list -> in seeding list -// in v1.0.0 (partial) - WIP +// in v1.0.0 - FEATURE FREEZE - Fix all (or almost all) opened bugs in bug tracker - Keep documention up to date - Windows port (Chris - Peerkoel) diff --git a/src/bittorrent.cpp b/src/bittorrent.cpp index 60f8960de..b5473ea2f 100644 --- a/src/bittorrent.cpp +++ b/src/bittorrent.cpp @@ -1083,6 +1083,7 @@ void bittorrent::readAlerts() { } else if (file_error_alert* p = dynamic_cast(a.get())) { QTorrentHandle h(p->handle); + qDebug("File Error: %s", p->msg().c_str()); if(h.is_valid()) emit fullDiskError(h); }