Add final destination to download log

This commit is contained in:
Tony Blyler 2016-05-13 18:49:47 -04:00
parent 13580fda9f
commit 6899802247
No known key found for this signature in database
GPG key ID: 25C9D3A655D1A65C

View file

@ -235,7 +235,7 @@ func (q *Queue) downloadTorrents(torrents []rtorrent.Torrent) {
}
go func(torrentFilePath string, downloadPath string, torrent rtorrent.Torrent) {
q.logger.Printf("Downloading '%s' (%s) to '%s'", torrent.Name, torrentFilePath, downloadPath)
q.logger.Printf("Downloading '%s' (%s) to '%s' (%s)", torrent.Name, torrentFilePath, downloadPath, destDownloadPath)
err := q.sftpClient.Mirror(torrent.Path, downloadPath)
if err != nil {
q.logger.Printf("Failed to download '%s' to '%s' error '%s'", torrent.Path, downloadPath, err)