summary refs log tree commit diff
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2016-01-29 15:01:26 +0000
committerMark Haines <mark.haines@matrix.org>2016-01-29 15:01:26 +0000
commit6927d0e091b4b6124bd45a627c7f299f2544c5b4 (patch)
tree5d481797667d506030c3b43904b57640ada107c0
parentFix the mock homserver used in the tests (diff)
downloadsynapse-6927d0e091b4b6124bd45a627c7f299f2544c5b4.tar.xz
Add missing param to the log line
-rw-r--r--synapse/handlers/identity.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/handlers/identity.py b/synapse/handlers/identity.py
index 77f133be8f..656ce124f9 100644
--- a/synapse/handlers/identity.py
+++ b/synapse/handlers/identity.py
@@ -65,7 +65,8 @@ class IdentityHandler(BaseHandler):
                     "Trusting untrustworthy ID server %r even though it isn't"
                     " in the trusted id list for testing because"
                     " 'use_insecure_ssl_client_just_for_testing_do_not_use'"
-                    " is set in the config"
+                    " is set in the config",
+                    id_server,
                 )
             else:
                 logger.warn('%s is not a trusted ID server: rejecting 3pid ' +