summary refs log tree commit diff
path: root/synapse/api/auth.py
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@arasphere.net>2017-01-05 13:47:42 +0000
committerGitHub <noreply@github.com>2017-01-05 13:47:42 +0000
commitdafd50d178ef36710130ffb830929f4a9ed3710c (patch)
tree1181b9f2343cc283136d413abdfbe848a70daee3 /synapse/api/auth.py
parentBump version and changelog to v0.18.6-rc3 (diff)
parentFix case (diff)
downloadsynapse-dafd50d178ef36710130ffb830929f4a9ed3710c.tar.xz
Merge pull request #1767 from matrix-org/matthew/resolve_state_group_logging
log call paths for resolve_state_group
Diffstat (limited to 'synapse/api/auth.py')
-rw-r--r--synapse/api/auth.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py
index a99986714d..641f2bb065 100644
--- a/synapse/api/auth.py
+++ b/synapse/api/auth.py
@@ -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
             )