Explorar el Código

Drop logging level of creating a pusher

Erik Johnston hace 5 años
padre
commit
a164134a53
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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):