diff options
author | Erik Johnston <erikj@jki.re> | 2019-02-22 15:29:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-22 15:29:16 +0000 |
commit | d14e94bae49e3d2ec2ba5ea1ebd36e6b39b7dcc1 (patch) | |
tree | 2155320ecca321530b1ecd9793f31e355cf0211c /synapse/push/pusher.py | |
parent | Merge pull request #4715 from matrix-org/erikj/fix_state_invalidation (diff) | |
parent | Add missing return (diff) | |
download | synapse-d14e94bae49e3d2ec2ba5ea1ebd36e6b39b7dcc1.tar.xz |
Merge pull request #4716 from matrix-org/erikj/pusher_logging
Fix up pusher logging a bit
Diffstat (limited to 'synapse/push/pusher.py')
-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): |