summary refs log tree commit diff
path: root/synapse/push
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2015-03-06 15:32:38 +0000
committerDavid Baker <dave@matrix.org>2015-03-06 15:32:38 +0000
commitbe9dafcd37fd3db1b4e0bccf9417d9ddfe344958 (patch)
tree78d02b2b084204f16489942c80b8b32f5d3762d4 /synapse/push
parentUpdate CHANGES to reflect no more fallback rule (diff)
downloadsynapse-be9dafcd37fd3db1b4e0bccf9417d9ddfe344958.tar.xz
Dial down logging for failed pushers
Diffstat (limited to 'synapse/push')
-rw-r--r--synapse/push/httppusher.py2
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: