summary refs log tree commit diff
path: root/synapse/push/pusher.py
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2019-02-22 15:29:16 +0000
committerGitHub <noreply@github.com>2019-02-22 15:29:16 +0000
commitd14e94bae49e3d2ec2ba5ea1ebd36e6b39b7dcc1 (patch)
tree2155320ecca321530b1ecd9793f31e355cf0211c /synapse/push/pusher.py
parentMerge pull request #4715 from matrix-org/erikj/fix_state_invalidation (diff)
parentAdd missing return (diff)
downloadsynapse-d14e94bae49e3d2ec2ba5ea1ebd36e6b39b7dcc1.tar.xz
Merge pull request #4716 from matrix-org/erikj/pusher_logging
Fix up pusher logging a bit
Diffstat (limited to 'synapse/push/pusher.py')
-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):