Don't spam console with failed announcements

These should be debug, not warning (previously warning reporting was disabled)
This commit is contained in:
caryoscelus 2023-07-24 09:18:42 +00:00
parent 1d2e264a44
commit 70f2eeada1

View file

@ -202,7 +202,7 @@ class SiteAnnouncer(object):
else:
raise AnnounceError("Unknown protocol: %s" % address_parts["protocol"])
except Exception as err:
self.site.log.warning("Tracker %s announce failed: %s in mode %s" % (tracker, Debug.formatException(err), mode))
self.site.log.debug("Tracker %s announce failed: %s in mode %s" % (tracker, Debug.formatException(err), mode))
error = err
if error: