mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-29 15:39:00 +03:00
Dial down logging for failed pushers
This commit is contained in:
parent
a2c6f25190
commit
be9dafcd37
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ class HttpPusher(Pusher):
|
|||
try:
|
||||
resp = yield self.httpCli.post_json_get_json(self.url, notification_dict)
|
||||
except:
|
||||
logger.exception("Failed to push %s ", self.url)
|
||||
logger.warn("Failed to push %s ", self.url)
|
||||
defer.returnValue(False)
|
||||
rejected = []
|
||||
if 'rejected' in resp:
|
||||
|
|
Loading…
Reference in a new issue