From 20755ca826e00e8b13369ee5eec2740a80128f34 Mon Sep 17 00:00:00 2001 From: lvaatamoinen Date: Sun, 19 Feb 2012 19:14:57 +0000 Subject: [PATCH] Added Q_FUNC_INFO macros to some functions. git-svn-id: file:///svnroot/qtrapids/trunk@90 42ac0dd5-4c8c-4c71-bb3e-ecdfe252ffda --- src/server/TorrentSession.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/server/TorrentSession.cpp b/src/server/TorrentSession.cpp index d9d2b95..7120427 100644 --- a/src/server/TorrentSession.cpp +++ b/src/server/TorrentSession.cpp @@ -158,20 +158,20 @@ void TorrentSession::addTorrent_(const QString &path, const QString &save_path QDir::home().mkdir(settings_->getTorrentsSubDir()); if (!torrent_file.exists()) { - qWarning() << "Torrent file " << path << "doesn't exist"; + qWarning() << Q_FUNC_INFO << " Torrent file " << path << "doesn't exist"; return; } QString new_torrent_fname(QDir(settings_->getTorrentsDir()) .filePath(QFileInfo(path).fileName())); #ifdef QTRAPIDS_DEBUG - qDebug() << "copy to " << new_torrent_fname; + qDebug() << Q_FUNC_INFO << " copy to " << new_torrent_fname; #endif torrent_file.copy(new_torrent_fname); #ifdef QTRAPIDS_DEBUG - qDebug() << "addTorrent: " << path << " save to " << save_path; + qDebug() << Q_FUNC_INFO << path << " save to " << save_path; #endif boost::intrusive_ptr tiTmp @@ -220,7 +220,7 @@ void TorrentSession::removeTorrent(const QString &hash) if (p == torrents_.end()) { #ifdef QTRAPIDS_DEBUG - qDebug() << "Invalid request to remove torrent with hash " << hash; + qDebug() << Q_FUNC_INFO << " Invalid request to remove torrent with hash " << hash; #endif return; } -- 1.7.9.5