summary refs log tree commit diff
path: root/synapse/push
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-01-22 20:15:42 +0000
committerRichard van der Hoff <richard@matrix.org>2018-01-22 20:15:42 +0000
commit4528dd2443f4dc9e737bf4eeccedfb8807a1ea2c (patch)
treec87dbc2aa313856bbcf613a6972a98af4a9f3f1d /synapse/push
parentlogging and debug for http pusher (diff)
downloadsynapse-4528dd2443f4dc9e737bf4eeccedfb8807a1ea2c.tar.xz
Fix logging and add user_id
Diffstat (limited to 'synapse/push')
-rw-r--r--synapse/push/httppusher.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/synapse/push/httppusher.py b/synapse/push/httppusher.py
index f2517f39a8..4a03af5b21 100644
--- a/synapse/push/httppusher.py
+++ b/synapse/push/httppusher.py
@@ -162,8 +162,9 @@ class HttpPusher(object):
         )
 
         logger.info(
-            "Processing %i unprocessed push actions starting at stream_ordering %i",
-            len(unprocessed), self.last_stream_ordering,
+            "Processing %i unprocessed push actions for %s starting at "
+            "stream_ordering %s",
+            len(unprocessed), self.user_id, self.last_stream_ordering,
         )
 
         for push_action in unprocessed: