Lower loading events log to DEBUG

This commit is contained in:
Erik Johnston 2017-01-17 17:18:13 +00:00
parent 37b4c7d8a9
commit 4ec1cf49e2

View file

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