0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-06 18:06:09 +02:00

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