diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-01-22 20:15:42 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-01-22 20:15:42 +0000 |
commit | 4528dd2443f4dc9e737bf4eeccedfb8807a1ea2c (patch) | |
tree | c87dbc2aa313856bbcf613a6972a98af4a9f3f1d /synapse/push | |
parent | logging and debug for http pusher (diff) | |
download | synapse-4528dd2443f4dc9e737bf4eeccedfb8807a1ea2c.tar.xz |
Fix logging and add user_id
Diffstat (limited to 'synapse/push')
-rw-r--r-- | synapse/push/httppusher.py | 5 |
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: |