summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-08-19 16:40:38 +0100
committerErik Johnston <erik@matrix.org>2014-08-19 16:40:38 +0100
commiteea2dc7dde1b06af927ff34c723a9414fef5255e (patch)
tree75802c04bed5af5eab1e5a93965593d3b0adec1e /synapse
parentAdd comment about what strorage.stream does (diff)
downloadsynapse-eea2dc7dde1b06af927ff34c723a9414fef5255e.tar.xz
Remove debug logging from token parsing funcs.
Diffstat (limited to 'synapse')
-rw-r--r--synapse/storage/stream.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/storage/stream.py b/synapse/storage/stream.py
index 18c1002e2c..3a67baa261 100644
--- a/synapse/storage/stream.py
+++ b/synapse/storage/stream.py
@@ -60,7 +60,6 @@ def _parse_stream_token(string):
             raise
         return int(string[1:])
     except:
-        logger.debug("Not stream token: %s", string)
         raise SynapseError(400, "Invalid token")
 
 
@@ -71,7 +70,6 @@ def _parse_topological_token(string):
         parts = string[1:].split('-', 1)
         return (int(parts[0]), int(parts[1]))
     except:
-        logger.debug("Not topological token: %s", string)
         raise SynapseError(400, "Invalid token")