Remove spurious log lines
This commit is contained in:
parent
619e8ecd0c
commit
6e2a7ee1bc
|
@ -188,7 +188,6 @@ class TransactionQueue(object):
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
destinations = set(destinations)
|
destinations = set(destinations)
|
||||||
logger.info("destinations: %r", destinations)
|
|
||||||
|
|
||||||
if send_on_behalf_of is not None:
|
if send_on_behalf_of is not None:
|
||||||
# If we are sending the event on behalf of another server
|
# If we are sending the event on behalf of another server
|
||||||
|
|
|
@ -179,9 +179,7 @@ class StateHandler(object):
|
||||||
latest_event_ids = yield self.store.get_latest_event_ids_in_room(room_id)
|
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")
|
logger.debug("calling resolve_state_groups from get_current_hosts_in_room")
|
||||||
entry = yield self.resolve_state_groups(room_id, latest_event_ids)
|
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)
|
joined_hosts = yield self.store.get_joined_hosts(room_id, entry)
|
||||||
logger.info("returning: %r", joined_hosts)
|
|
||||||
defer.returnValue(joined_hosts)
|
defer.returnValue(joined_hosts)
|
||||||
|
|
||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
|
|
|
@ -560,7 +560,6 @@ class RoomMemberStore(SQLBaseStore):
|
||||||
|
|
||||||
cache = self._get_joined_hosts_cache(room_id)
|
cache = self._get_joined_hosts_cache(room_id)
|
||||||
joined_hosts = yield cache.get_destinations(state_entry)
|
joined_hosts = yield cache.get_destinations(state_entry)
|
||||||
logger.info("returning: %r", joined_hosts)
|
|
||||||
|
|
||||||
defer.returnValue(joined_hosts)
|
defer.returnValue(joined_hosts)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue