From 60c0a90899d052cc3d314b4d7ac7a556158e859d Mon Sep 17 00:00:00 2001 From: Ben Sarmiento Date: Tue, 30 Apr 2024 05:05:34 +0200 Subject: [PATCH] Update error message --- internal/torrent/repair.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/torrent/repair.go b/internal/torrent/repair.go index 9c5d658..8540a84 100644 --- a/internal/torrent/repair.go +++ b/internal/torrent/repair.go @@ -285,7 +285,7 @@ func (t *TorrentManager) assignUnassignedLinks(torrent *Torrent) bool { processedCount := assignedCount + newUnassignedLinks.Count() + expiredCount if processedCount%10 == 0 { - t.log.Infof("Processed %d out of %d links (%d expired) to torrent %s", processedCount, unassignedTotal, expiredCount, t.GetKey(torrent)) + t.log.Infof("Processed %d out of %d links (%d expired) to broken torrent %s", processedCount, unassignedTotal, expiredCount, t.GetKey(torrent)) } return false