mirror of
https://github.com/element-hq/synapse.git
synced 2024-12-19 01:21:09 +03:00
Add current token to log line
This commit is contained in:
parent
7bd1575ddf
commit
1e4d9df3cd
1 changed files with 5 additions and 1 deletions
|
@ -777,7 +777,11 @@ class Notifier:
|
|||
if now - start > 10_000:
|
||||
return False
|
||||
|
||||
logger.info("Waiting for current token to reach %s", stream_token)
|
||||
logger.info(
|
||||
"Waiting for current token to reach %s; currently at %s",
|
||||
stream_token,
|
||||
current_token,
|
||||
)
|
||||
|
||||
# TODO: be better
|
||||
await self.clock.sleep(0.5)
|
||||
|
|
Loading…
Reference in a new issue