diff options
author | Erik Johnston <erik@matrix.org> | 2015-02-12 19:29:43 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-02-12 19:29:43 +0000 |
commit | 789251afa7d97a08318f92ffe96f5f7ce16d6157 (patch) | |
tree | 0c80c119afa32617a9c238639aca8dee971ba025 /synapse/federation | |
parent | Remove unused function (diff) | |
download | synapse-789251afa7d97a08318f92ffe96f5f7ce16d6157.tar.xz |
Fix logging
Diffstat (limited to 'synapse/federation')
-rw-r--r-- | synapse/federation/federation_base.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/synapse/federation/federation_base.py b/synapse/federation/federation_base.py index 966f4d2c5c..21a763214b 100644 --- a/synapse/federation/federation_base.py +++ b/synapse/federation/federation_base.py @@ -86,7 +86,10 @@ class FederationBase(object): except: pass - logger.warn("Failed to find copy of %s with valid signature") + logger.warn( + "Failed to find copy of %s with valid signature", + pdu.event_id, + ) yield defer.gatherResults( [do(pdu) for pdu in pdus], |