From bc67dc2d5d0170526e7bc1b8da48aba83619daaa Mon Sep 17 00:00:00 2001 From: Ben Sarmiento Date: Mon, 5 Feb 2024 03:51:12 +0100 Subject: [PATCH] Remove redundant log --- internal/torrent/repair.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/torrent/repair.go b/internal/torrent/repair.go index 135ba9d..89dd4cd 100644 --- a/internal/torrent/repair.go +++ b/internal/torrent/repair.go @@ -306,7 +306,6 @@ func (t *TorrentManager) redownloadTorrent(torrent *Torrent, selection string) ( if selection == "" { // only delete the old torrent if we are redownloading all files oldTorrentIDs = torrent.DownloadedIDs.Union(torrent.InProgressIDs).ToSlice() - t.log.Debugf("Redownloading torrent %s with all files (torrents=%v)", t.GetKey(torrent), oldTorrentIDs) tmpSelection := "" torrent.SelectedFiles.IterCb(func(_ string, file *File) { tmpSelection += fmt.Sprintf("%d,", file.ID) // select all files