summary refs log tree commit diff
path: root/synapse/api
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-01-17 17:07:15 +0000
committerErik Johnston <erik@matrix.org>2017-01-17 17:07:15 +0000
commit5f027d1fc54ab51b420e3deb25d83ac05676fdbf (patch)
tree0e62bf8101a8eb9ef3fdd78f62fe049ef593a381 /synapse/api
parentFix typo in return type (diff)
downloadsynapse-5f027d1fc54ab51b420e3deb25d83ac05676fdbf.tar.xz
Change resolve_state_groups call site logging to DEBUG
Diffstat (limited to 'synapse/api')
-rw-r--r--synapse/api/auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py
index 280d4c4452..03a215ab1b 100644
--- a/synapse/api/auth.py
+++ b/synapse/api/auth.py
@@ -146,7 +146,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")
+            logger.debug("calling resolve_state_groups from check_host_in_room")
             entry = yield self.state.resolve_state_groups(
                 room_id, latest_event_ids
             )