Don't spam console with failed announcements
These should be debug, not warning (previously warning reporting was disabled)
This commit is contained in:
parent
1d2e264a44
commit
70f2eeada1
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ class SiteAnnouncer(object):
|
||||||
else:
|
else:
|
||||||
raise AnnounceError("Unknown protocol: %s" % address_parts["protocol"])
|
raise AnnounceError("Unknown protocol: %s" % address_parts["protocol"])
|
||||||
except Exception as err:
|
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
|
error = err
|
||||||
|
|
||||||
if error:
|
if error:
|
||||||
|
|
Loading…
Reference in a new issue