Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Make the replication logger quieter (#4108)
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkowl committed Oct 29, 2018
1 parent 77d70a7 commit c4b3698
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/4108.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The "Received rdata" log messages on workers is now logged at DEBUG, not INFO.
2 changes: 1 addition & 1 deletion synapse/replication/tcp/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def on_rdata(self, stream_name, token, rows):
Can be overriden in subclasses to handle more.
"""
logger.info("Received rdata %s -> %s", stream_name, token)
logger.debug("Received rdata %s -> %s", stream_name, token)
return self.store.process_replication_rows(stream_name, token, rows)

def on_position(self, stream_name, token):
Expand Down

0 comments on commit c4b3698

Please sign in to comment.