Parcourir la source

Drop logging level of creating a pusher

Erik Johnston il y a 5 ans
Parent
commit
a164134a53
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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):