Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 31d5807

Browse files
committed
improve logging more
1 parent bdfac1e commit 31d5807

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

synapse/handlers/auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ def get_access_token_for_user_id(self, user_id, device_id, valid_until_ms):
583583
fmt_expiry = ""
584584
if valid_until_ms is not None:
585585
fmt_expiry = time.strftime(
586-
"until %Y-%m-%d %H:%M:%S", time.localtime(valid_until_ms / 1000.0)
586+
" until %Y-%m-%d %H:%M:%S", time.localtime(valid_until_ms / 1000.0)
587587
)
588588
logger.info("Logging in user %s on device %s%s", user_id, device_id, fmt_expiry)
589589

0 commit comments

Comments
 (0)