From fe455970f12630f8fd127a5f787e572e4297bd03 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Thu, 26 Mar 2009 21:08:10 +0000 Subject: [PATCH] - use std error output instead of debug output for file error message --- src/bittorrent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bittorrent.cpp b/src/bittorrent.cpp index 5cc873210..248207973 100644 --- a/src/bittorrent.cpp +++ b/src/bittorrent.cpp @@ -1171,7 +1171,7 @@ void bittorrent::readAlerts() { else if (file_error_alert* p = dynamic_cast(a.get())) { QTorrentHandle h(p->handle); h.auto_managed(false); - qDebug("File Error: %s", p->message().c_str()); + std::cerr << "File Error: " << p->message().c_str() << std::endl; if(h.is_valid()) emit fullDiskError(h); }