From 3e71d13acf92b878f9b27665d9e4846105da3aa7 Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Wed, 29 Apr 2015 18:37:42 +0100 Subject: [PATCH] Also log when we've started pushers --- synapse/push/pusherpool.py | 2 ++ 1 file changed, 2 insertions(+) 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)