Browse Source

Drop logging level of creating a pusher

Erik Johnston 5 years ago
parent
commit
a164134a53
1 changed files with 1 additions and 1 deletions
  1. 1 1
      synapse/push/pusher.py

+ 1 - 1
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):