Skip to content
Snippets Groups Projects
Commit 1224612a authored by Richard van der Hoff's avatar Richard van der Hoff
Browse files

Log room when doing state resolution

Mostly because it helps figure out what is prompting the resolution
parent 0fc2362d
No related branches found
No related tags found
No related merge requests found
...@@ -528,6 +528,12 @@ class EventsStore(SQLBaseStore): ...@@ -528,6 +528,12 @@ class EventsStore(SQLBaseStore):
# the events we have yet to persist, so we need a slightly more # the events we have yet to persist, so we need a slightly more
# complicated event lookup function than simply looking the events # complicated event lookup function than simply looking the events
# up in the db. # up in the db.
logger.info(
"Resolving state for %s with %i state sets",
room_id, len(state_sets),
)
events_map = {ev.event_id: ev for ev, _ in events_context} events_map = {ev.event_id: ev for ev, _ in events_context}
@defer.inlineCallbacks @defer.inlineCallbacks
......
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