summary refs log tree commit diff
path: root/synapse/http/server.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-12-12 15:08:29 +0000
committerErik Johnston <erik@matrix.org>2014-12-12 15:08:29 +0000
commit1fc2a0e33ef6e88a79dbf4325468d8eb77db0f65 (patch)
treea4376730c84ee3950bf4e5eedf8bfa2c1903f6b9 /synapse/http/server.py
parentConsistently url decode and decode as utf 8 the URL parts (diff)
downloadsynapse-1fc2a0e33ef6e88a79dbf4325468d8eb77db0f65.tar.xz
Fix tests and remove debug logging
Diffstat (limited to 'synapse/http/server.py')
-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