Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
97a8b4ca
Unverified
Commit
97a8b4ca
authored
5 years ago
by
Amber Brown
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Move some timeout checking logs to DEBUG #5785
parent
85b0bd8f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
changelog.d/5785.misc
+1
-0
1 addition, 0 deletions
changelog.d/5785.misc
synapse/handlers/presence.py
+1
-1
1 addition, 1 deletion
synapse/handlers/presence.py
synapse/handlers/typing.py
+1
-1
1 addition, 1 deletion
synapse/handlers/typing.py
with
3 additions
and
2 deletions
changelog.d/5785.misc
0 → 100644
+
1
−
0
View file @
97a8b4ca
Set the logs emitted when checking typing and presence timeouts to DEBUG level, not INFO.
This diff is collapsed.
Click to expand it.
synapse/handlers/presence.py
+
1
−
1
View file @
97a8b4ca
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
synapse/handlers/typing.py
+
1
−
1
View file @
97a8b4ca
...
...
@@ -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
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment