summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
Diffstat (limited to 'synapse')
-rw-r--r--synapse/http/server.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/synapse/http/server.py b/synapse/http/server.py
index 2d5d71c8aa..f33859cf76 100644
--- a/synapse/http/server.py
+++ b/synapse/http/server.py
@@ -124,14 +124,10 @@ class JsonResource(HttpServer, resource.Resource):
                     # returned response. We pass both the request and any
                     # matched groups from the regex to the callback.
 
-                    logger.debug("url things: %r", m.groups())
-
                     args = [
                         urllib.unquote(u).decode("UTF-8") for u in m.groups()
                     ]
 
-                    logger.debug("url things args: %r", args)
-
                     code, response = yield path_entry.callback(
                         request,
                         *args