summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--changelog.d/14347.bugfix1
-rw-r--r--synapse/federation/federation_client.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/changelog.d/14347.bugfix b/changelog.d/14347.bugfix
new file mode 100644

index 0000000000..91975757ae --- /dev/null +++ b/changelog.d/14347.bugfix
@@ -0,0 +1 @@ +Fix a bug introduced in Synapse 1.64.0rc1 which could cause log spam when fetching events from other homeservers. 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,