Remove debug logs

This commit is contained in:
Ben Sarmiento
2024-01-29 20:59:35 +01:00
parent f83c5e3363
commit 1615c9e121

View File

@@ -54,7 +54,6 @@ func (t *TorrentManager) refreshTorrents() []string {
t.deleteOnceDone.Remove(fixerID) t.deleteOnceDone.Remove(fixerID)
return false return false
}) })
t.log.Debugf("Fixers left: %d", t.fixers.Count())
// ensure delete // ensure delete
infoCache, _ := t.DirectoryMap.Get(INT_INFO_CACHE) infoCache, _ := t.DirectoryMap.Get(INT_INFO_CACHE)
@@ -72,7 +71,6 @@ func (t *TorrentManager) refreshTorrents() []string {
t.Api.DeleteTorrent(fixerToDel) t.Api.DeleteTorrent(fixerToDel)
infoCache.Remove(fixerToDel) infoCache.Remove(fixerToDel)
} }
t.log.Debugf("Delete once done left: %d", t.deleteOnceDone.Cardinality())
newlyFetchedKeys := mapset.NewSet[string]() newlyFetchedKeys := mapset.NewSet[string]()
noInfoCount := 0 noInfoCount := 0