From 2110148ee4f4bcb4d2664705b69a6d6d62e9a115 Mon Sep 17 00:00:00 2001 From: Tony Blyler Date: Fri, 13 May 2016 19:28:03 -0400 Subject: [PATCH] Add completed download log --- queue/queue.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/queue/queue.go b/queue/queue.go index 38ed7d9..ba522e1 100644 --- a/queue/queue.go +++ b/queue/queue.go @@ -307,6 +307,8 @@ func (q *Queue) downloadTorrents(torrents []rtorrent.Torrent) { } } + q.logger.Printf("Successfully downloaded '%s' (%s)", torrent.Name, torrentFilePath) + q.lock.RUnlock() q.lock.Lock() delete(q.downloadQueue, torrent.Hash)