mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-02 20:59:12 +01:00
Remove debug lines
This commit is contained in:
parent
52d8519008
commit
12819d5082
1 changed files with 0 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue