summary refs log tree commit diff
path: root/synapse/storage/_base.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-04-15 16:27:04 +0100
committerErik Johnston <erik@matrix.org>2015-04-15 16:27:04 +0100
commit5b31afcbd1c2016d03a29169e3fdc22a1adf7f52 (patch)
tree8104970c74665000c4064131ff81ec11ad00c2cd /synapse/storage/_base.py
parentAdd missing yield (diff)
downloadsynapse-5b31afcbd1c2016d03a29169e3fdc22a1adf7f52.tar.xz
Remove debug logging
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r--synapse/storage/_base.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py
index 43a923d914..5ec1d2613e 100644
--- a/synapse/storage/_base.py
+++ b/synapse/storage/_base.py
@@ -847,11 +847,9 @@ class SQLBaseStore(object):
             sql_getevents_timer.inc_by(curr_time - last_time, desc)
             return curr_time
 
-        logger.debug("Got js: %r", js)
         d = json.loads(js)
         start_time = update_counter("decode_json", start_time)
 
-        logger.debug("Got internal_metadata: %r", internal_metadata)
         internal_metadata = json.loads(internal_metadata)
         start_time = update_counter("decode_internal", start_time)