diff options
author | David Robertson <davidr@element.io> | 2022-11-01 19:20:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-01 19:20:35 +0000 |
commit | d4fac8a3e27ab3e133c5e5ac603c8d937a1fd86c (patch) | |
tree | 9cee42c8e08d1ab067cb03c0d5dce4de9f58120f /synapse | |
parent | Enable testing MSC3874 in complement. (#14339) (diff) | |
download | synapse-d4fac8a3e27ab3e133c5e5ac603c8d937a1fd86c.tar.xz |
Fix typo in #13320 which could cause log spam (#14347)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/federation/federation_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/federation/federation_client.py b/synapse/federation/federation_client.py index fa225182be..c4c0bc7315 100644 --- a/synapse/federation/federation_client.py +++ b/synapse/federation/federation_client.py @@ -465,7 +465,7 @@ class FederationClient(FederationBase): pdu_attempts[destination] = now logger.info( - "get_pdu(event_id=): Failed to get PDU from %s because %s", + "get_pdu(event_id=%s): Failed to get PDU from %s because %s", event_id, destination, e, |