Skip to content
Snippets Groups Projects
Unverified Commit dc46f127 authored by Dagfinn Ilmari Mannsåker's avatar Dagfinn Ilmari Mannsåker Committed by GitHub
Browse files

Include room ID in ignored EDU log messages (#10507)

parent 42225aa4
No related branches found
No related tags found
No related merge requests found
Include room ID in ignored EDU log messages. Contributed by @ilmari.
......@@ -70,7 +70,8 @@ class ReceiptsHandler(BaseHandler):
)
if not is_in_room:
logger.info(
"Ignoring receipt from %s as we're not in the room",
"Ignoring receipt for room %r from server %s as we're not in the room",
room_id,
origin,
)
continue
......
......@@ -335,7 +335,8 @@ class TypingWriterHandler(FollowerTypingHandler):
)
if not is_in_room:
logger.info(
"Ignoring typing update from %s as we're not in the room",
"Ignoring typing update for room %r from server %s as we're not in the room",
room_id,
origin,
)
return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment