mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Move some timeout checking logs to DEBUG #5785
This commit is contained in:
parent
85b0bd8fe0
commit
97a8b4caf7
1
changelog.d/5785.misc
Normal file
1
changelog.d/5785.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
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
|
"""Checks the presence of users that have timed out and updates as
|
||||||
appropriate.
|
appropriate.
|
||||||
"""
|
"""
|
||||||
logger.info("Handling presence timeouts")
|
logger.debug("Handling presence timeouts")
|
||||||
now = self.clock.time_msec()
|
now = self.clock.time_msec()
|
||||||
|
|
||||||
# Fetch the list of users that *may* have timed out. Things may have
|
# Fetch the list of users that *may* have timed out. Things may have
|
||||||
|
@ -83,7 +83,7 @@ class TypingHandler(object):
|
|||||||
self._room_typing = {}
|
self._room_typing = {}
|
||||||
|
|
||||||
def _handle_timeouts(self):
|
def _handle_timeouts(self):
|
||||||
logger.info("Checking for typing timeouts")
|
logger.debug("Checking for typing timeouts")
|
||||||
|
|
||||||
now = self.clock.time_msec()
|
now = self.clock.time_msec()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user