summary refs log tree commit diff
path: root/synapse/push
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-02-22 14:48:06 +0000
committerErik Johnston <erik@matrix.org>2019-02-22 14:48:06 +0000
commita164134a53417bfa3f126671b02be7e83376aacd (patch)
tree27ca43127b0dec7ad6c9a0cee5bd725c4f597038 /synapse/push
parentCorrectly handle null data in HttpPusher (diff)
downloadsynapse-a164134a53417bfa3f126671b02be7e83376aacd.tar.xz
Drop logging level of creating a pusher
Diffstat (limited to 'synapse/push')
-rw-r--r--synapse/push/pusher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/pusher.py b/synapse/push/pusher.py
index 368d5094be..b33f2a357b 100644
--- a/synapse/push/pusher.py
+++ b/synapse/push/pusher.py
@@ -56,7 +56,7 @@ class PusherFactory(object):
         f = self.pusher_types.get(kind, None)
         if not f:
             return None
-        logger.info("creating %s pusher for %r", kind, pusherdict)
+        logger.debug("creating %s pusher for %r", kind, pusherdict)
         return f(self.hs, pusherdict)
 
     def _create_email_pusher(self, _hs, pusherdict):