Skip to content
Snippets Groups Projects
Commit a164134a authored by Erik Johnston's avatar Erik Johnston
Browse files

Drop logging level of creating a pusher

parent 1d9df51f
No related branches found
No related tags found
No related merge requests found
...@@ -56,7 +56,7 @@ class PusherFactory(object): ...@@ -56,7 +56,7 @@ class PusherFactory(object):
f = self.pusher_types.get(kind, None) f = self.pusher_types.get(kind, None)
if not f: if not f:
return None 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) return f(self.hs, pusherdict)
def _create_email_pusher(self, _hs, pusherdict): def _create_email_pusher(self, _hs, pusherdict):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment