summary refs log tree commit diff
path: root/synapse/push/pusher.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-02-22 15:29:41 +0000
committerErik Johnston <erik@matrix.org>2019-02-22 15:29:41 +0000
commit0ea52872ab19104067e1bf590012ebfda36c5882 (patch)
treeb86701b83a7e227611e84c91a3755dd2862a7eca /synapse/push/pusher.py
parentbail out early in on_new_receipts if no pushers (diff)
parentMerge pull request #4716 from matrix-org/erikj/pusher_logging (diff)
downloadsynapse-0ea52872ab19104067e1bf590012ebfda36c5882.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'synapse/push/pusher.py')
-rw-r--r--synapse/push/pusher.py2
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):