More logging for the linearizer and for get_events

This commit is contained in:
Mark Haines 2017-01-05 12:32:47 +00:00
parent e1c5463efc
commit dd3df11c55
2 changed files with 13 additions and 2 deletions

View file

@ -1084,8 +1084,10 @@ class EventsStore(SQLBaseStore):
self._do_fetch
)
logger.info("Loading %d events", len(events))
with PreserveLoggingContext():
rows = yield events_d
logger.info("Loaded %d events (%d rows)", len(events), len(rows))
if not allow_rejected:
rows[:] = [r for r in rows if not r["rejects"]]