diff options
author | Erik Johnston <erik@matrix.org> | 2018-08-17 11:11:06 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-08-17 11:11:06 +0100 |
commit | 3b2dcfff78d5c330937c4b75f34f79f8e991d8e3 (patch) | |
tree | fd029fa98e19e8d2e3e5400b96adf6592bb16133 /synapse | |
parent | Merge pull request #3705 from matrix-org/erikj/fix_inbound_fed_worker (diff) | |
download | synapse-3b2dcfff78d5c330937c4b75f34f79f8e991d8e3.tar.xz |
Fix logging bug in EDU handling over replication
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/replication/http/federation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/http/federation.py b/synapse/replication/http/federation.py index 2ddd18f73b..64a79da162 100644 --- a/synapse/replication/http/federation.py +++ b/synapse/replication/http/federation.py @@ -156,7 +156,7 @@ class ReplicationFederationSendEduRestServlet(ReplicationEndpoint): edu_content = content["content"] logger.info( - "Got %r edu from $s", + "Got %r edu from %s", edu_type, origin, ) |