From 66a4ceaa3359fad30ea7ceff5c28a742e245ec2a Mon Sep 17 00:00:00 2001 From: Ben Sarmiento Date: Fri, 16 Feb 2024 06:01:27 +0100 Subject: [PATCH] Use keys instead --- internal/torrent/fixer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/torrent/fixer.go b/internal/torrent/fixer.go index 3fe3386..2d858e4 100644 --- a/internal/torrent/fixer.go +++ b/internal/torrent/fixer.go @@ -22,7 +22,7 @@ func (t *TorrentManager) fixerAddCommand(trigger, command string) { } func (t *TorrentManager) processFixers(instances []realdebrid.Torrent) { - t.log.Debugf("Processing fixers (%d left: %v)", t.fixers.Count(), t.fixers) + t.log.Debugf("Processing fixers (%d left: %v)", t.fixers.Count(), t.fixers.Keys()) var toDelete []string var toRedownload []*Torrent allTorrents, _ := t.DirectoryMap.Get(INT_ALL)