Log successful torrent move

This commit is contained in:
sledgehammer999 2018-04-09 18:26:01 +03:00
parent 97b8e02bf5
commit 44b57a59f5
No known key found for this signature in database
GPG key ID: 6E4A2D025B7CC9A2

View file

@ -1445,8 +1445,8 @@ void TorrentHandle::handleStorageMovedAlert(const libtorrent::storage_moved_aler
return; return;
} }
qDebug("Torrent is successfully moved from %s to %s" LogMsg(tr("Successfully moved torrent: %1. New path: %2").arg(name(), m_moveStorageInfo.newPath));
, qUtf8Printable(m_moveStorageInfo.oldPath), qUtf8Printable(m_moveStorageInfo.newPath));
const QDir oldDir {m_moveStorageInfo.oldPath}; const QDir oldDir {m_moveStorageInfo.oldPath};
if ((oldDir == QDir(m_session->torrentTempPath(info()))) if ((oldDir == QDir(m_session->torrentTempPath(info())))
&& (oldDir != QDir(m_session->tempPath()))) { && (oldDir != QDir(m_session->tempPath()))) {