Fix logging and add user_id

This commit is contained in:
Richard van der Hoff 2018-01-22 20:15:42 +00:00
parent 93efd7eb04
commit 4528dd2443

View File

@ -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: