Browse Source

Add log message

adaptive-webui-19844
Chocobo1 8 years ago
parent
commit
0d3c670728
  1. 5
      src/gui/transferlistwidget.cpp

5
src/gui/transferlistwidget.cpp

@ -46,6 +46,7 @@
#include "transferlistwidget.h" #include "transferlistwidget.h"
#include "base/bittorrent/session.h" #include "base/bittorrent/session.h"
#include "base/bittorrent/torrenthandle.h" #include "base/bittorrent/torrenthandle.h"
#include "base/logger.h"
#include "base/torrentfilter.h" #include "base/torrentfilter.h"
#include "transferlistdelegate.h" #include "transferlistdelegate.h"
#include "previewselect.h" #include "previewselect.h"
@ -260,8 +261,10 @@ void TransferListWidget::setSelectedTorrentsLocation()
qDebug("New location is %s", qPrintable(newLocation)); qDebug("New location is %s", qPrintable(newLocation));
// Actually move storage // 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)); torrent->move(Utils::Fs::expandPathAbs(newLocation));
}
} }
void TransferListWidget::pauseAllTorrents() void TransferListWidget::pauseAllTorrents()

Loading…
Cancel
Save