Skip to content
Snippets Groups Projects
Unverified Commit 97a8b4ca authored by Amber Brown's avatar Amber Brown Committed by GitHub
Browse files

Move some timeout checking logs to DEBUG #5785

parent 85b0bd8f
No related branches found
No related tags found
No related merge requests found
Set the logs emitted when checking typing and presence timeouts to DEBUG level, not INFO.
......@@ -333,7 +333,7 @@ class PresenceHandler(object):
"""Checks the presence of users that have timed out and updates as
appropriate.
"""
logger.info("Handling presence timeouts")
logger.debug("Handling presence timeouts")
now = self.clock.time_msec()
# Fetch the list of users that *may* have timed out. Things may have
......
......@@ -83,7 +83,7 @@ class TypingHandler(object):
self._room_typing = {}
def _handle_timeouts(self):
logger.info("Checking for typing timeouts")
logger.debug("Checking for typing timeouts")
now = self.clock.time_msec()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment