diff options
author | David Baker <dave@matrix.org> | 2015-03-06 15:32:38 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2015-03-06 15:32:38 +0000 |
commit | be9dafcd37fd3db1b4e0bccf9417d9ddfe344958 (patch) | |
tree | 78d02b2b084204f16489942c80b8b32f5d3762d4 /synapse | |
parent | Update CHANGES to reflect no more fallback rule (diff) | |
download | synapse-be9dafcd37fd3db1b4e0bccf9417d9ddfe344958.tar.xz |
Dial down logging for failed pushers
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/push/httppusher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/httppusher.py b/synapse/push/httppusher.py index caca709f10..a02fed57b4 100644 --- a/synapse/push/httppusher.py +++ b/synapse/push/httppusher.py @@ -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: |