diff options
author | Erik Johnston <erik@matrix.org> | 2015-04-29 18:37:42 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-04-29 18:37:42 +0100 |
commit | 3e71d13acf92b878f9b27665d9e4846105da3aa7 (patch) | |
tree | ee896afd1ab347dd48d651855fa64a0e749632fe /synapse/push | |
parent | Revert previous (diff) | |
download | synapse-3e71d13acf92b878f9b27665d9e4846105da3aa7.tar.xz |
Also log when we've started pushers
Diffstat (limited to 'synapse/push')
-rw-r--r-- | synapse/push/pusherpool.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/push/pusherpool.py b/synapse/push/pusherpool.py index 571d8b2f82..0ab2f65972 100644 --- a/synapse/push/pusherpool.py +++ b/synapse/push/pusherpool.py @@ -186,6 +186,8 @@ class PusherPool: self.pushers[fullid] = p p.start() + logger.info("Started pushers") + @defer.inlineCallbacks def remove_pusher(self, app_id, pushkey, user_name): fullid = "%s:%s:%s" % (app_id, pushkey, user_name) |