add logging for all the places we call resolve_state_groups. my kingdom for a backtrace that actually works.

This commit is contained in:
Matthew Hodgson 2017-01-05 13:40:39 +00:00
parent 8cfc0165e9
commit d79d165761
3 changed files with 6 additions and 0 deletions

View file

@ -290,6 +290,7 @@ class Auth(object):
with Measure(self.clock, "check_host_in_room"):
latest_event_ids = yield self.store.get_latest_event_ids_in_room(room_id)
logger.info("calling resolve_state_groups from check_host_in_room");
entry = yield self.state.resolve_state_groups(
room_id, latest_event_ids
)