diff options
author | Paul "LeoNerd" Evans <paul@matrix.org> | 2014-09-12 14:38:27 +0100 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2014-09-12 14:38:27 +0100 |
commit | a840ff8f3fb0c58737a09cd326247fde4d75e2e3 (patch) | |
tree | 129433f71e61d1be1a386e9693fed2789901e44b | |
parent | Logging of all SQL queries via the 'synapse.storage.SQL' logger (diff) | |
download | synapse-a840ff8f3fb0c58737a09cd326247fde4d75e2e3.tar.xz |
Now don't need the other logger.debug() call in _execute
-rw-r--r-- | synapse/storage/_base.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py index a46f2c6601..7006c1995b 100644 --- a/synapse/storage/_base.py +++ b/synapse/storage/_base.py @@ -104,11 +104,6 @@ class SQLBaseStore(object): Returns: The result of decoder(results) """ - logger.debug( - "[SQL] %s Args=%s Func=%s", - query, args, decoder.__name__ if decoder else None - ) - def interaction(txn): cursor = txn.execute(query, args) if decoder: |