Remove spurious log lines

This commit is contained in:
Erik Johnston 2017-06-07 11:05:17 +01:00
parent 619e8ecd0c
commit 6e2a7ee1bc
3 changed files with 0 additions and 4 deletions

View file

@ -188,7 +188,6 @@ class TransactionQueue(object):
],
)
destinations = set(destinations)
logger.info("destinations: %r", destinations)
if send_on_behalf_of is not None:
# If we are sending the event on behalf of another server

View file

@ -179,9 +179,7 @@ class StateHandler(object):
latest_event_ids = yield self.store.get_latest_event_ids_in_room(room_id)
logger.debug("calling resolve_state_groups from get_current_hosts_in_room")
entry = yield self.resolve_state_groups(room_id, latest_event_ids)
logger.info("State: %r", entry.state_group)
joined_hosts = yield self.store.get_joined_hosts(room_id, entry)
logger.info("returning: %r", joined_hosts)
defer.returnValue(joined_hosts)
@defer.inlineCallbacks

View file

@ -560,7 +560,6 @@ class RoomMemberStore(SQLBaseStore):
cache = self._get_joined_hosts_cache(room_id)
joined_hosts = yield cache.get_destinations(state_entry)
logger.info("returning: %r", joined_hosts)
defer.returnValue(joined_hosts)