Update error message

This commit is contained in:
Ben Sarmiento
2024-04-30 05:05:34 +02:00
parent a3bc9e75f5
commit 60c0a90899

View File

@@ -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