From 0d3c6707287dd5dda41cb76f85c4c87e7a133bb1 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Thu, 30 Mar 2017 10:06:09 +0800 Subject: [PATCH] Add log message --- src/gui/transferlistwidget.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gui/transferlistwidget.cpp b/src/gui/transferlistwidget.cpp index 7bc8a5f51..b9c85849b 100644 --- a/src/gui/transferlistwidget.cpp +++ b/src/gui/transferlistwidget.cpp @@ -46,6 +46,7 @@ #include "transferlistwidget.h" #include "base/bittorrent/session.h" #include "base/bittorrent/torrenthandle.h" +#include "base/logger.h" #include "base/torrentfilter.h" #include "transferlistdelegate.h" #include "previewselect.h" @@ -260,8 +261,10 @@ void TransferListWidget::setSelectedTorrentsLocation() qDebug("New location is %s", qPrintable(newLocation)); // Actually move storage - foreach (BitTorrent::TorrentHandle *const torrent, torrents) + foreach (BitTorrent::TorrentHandle *const torrent, torrents) { + Logger::instance()->addMessage(tr("Set location: moving \"%1\", from \"%2\" to \"%3\"", "Set location: moving \"ubuntu_16_04.iso\", from \"/home/dir1\" to \"/home/dir2\"").arg(torrent->name()).arg(torrent->savePath()).arg(newLocation)); torrent->move(Utils::Fs::expandPathAbs(newLocation)); + } } void TransferListWidget::pauseAllTorrents()