diff options
author | Erik Johnston <erik@matrix.org> | 2019-02-22 14:48:06 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-02-22 14:48:06 +0000 |
commit | a164134a53417bfa3f126671b02be7e83376aacd (patch) | |
tree | 27ca43127b0dec7ad6c9a0cee5bd725c4f597038 /synapse | |
parent | Correctly handle null data in HttpPusher (diff) | |
download | synapse-a164134a53417bfa3f126671b02be7e83376aacd.tar.xz |
Drop logging level of creating a pusher
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/push/pusher.py | 2 |
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): |