Remove debug lines

This commit is contained in:
Erik Johnston 2015-01-06 13:12:30 +00:00
parent 52d8519008
commit 12819d5082

View file

@ -58,8 +58,6 @@ class StateStore(SQLBaseStore):
if group: if group:
groups.add(group) groups.add(group)
logger.debug("Got groups: %s", groups)
res = {} res = {}
for group in groups: for group in groups:
state_ids = self._simple_select_onecol_txn( state_ids = self._simple_select_onecol_txn(
@ -69,11 +67,6 @@ class StateStore(SQLBaseStore):
retcol="event_id", retcol="event_id",
) )
logger.debug(
"Got %d events for group %s",
len(state_ids), group
)
state = self._get_events_txn(txn, state_ids) state = self._get_events_txn(txn, state_ids)
res[group] = state res[group] = state