mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-23 10:05:55 +03:00
add appid/device_display_name to to pusher logging
This commit is contained in:
parent
4528dd2443
commit
e051abd20b
1 changed files with 2 additions and 2 deletions
|
@ -164,7 +164,7 @@ class HttpPusher(object):
|
|||
logger.info(
|
||||
"Processing %i unprocessed push actions for %s starting at "
|
||||
"stream_ordering %s",
|
||||
len(unprocessed), self.user_id, self.last_stream_ordering,
|
||||
len(unprocessed), self.name, self.last_stream_ordering,
|
||||
)
|
||||
|
||||
for push_action in unprocessed:
|
||||
|
@ -342,7 +342,7 @@ class HttpPusher(object):
|
|||
|
||||
@defer.inlineCallbacks
|
||||
def _send_badge(self, badge):
|
||||
logger.info("Sending updated badge count %d to %r", badge, self.user_id)
|
||||
logger.info("Sending updated badge count %d to %s", badge, self.name)
|
||||
d = {
|
||||
'notification': {
|
||||
'id': '',
|
||||
|
|
Loading…
Reference in a new issue