diff options
Diffstat (limited to 'wqflask/db/call.py')
-rw-r--r-- | wqflask/db/call.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/wqflask/db/call.py b/wqflask/db/call.py index b380b520..ac9f7fe5 100644 --- a/wqflask/db/call.py +++ b/wqflask/db/call.py @@ -29,7 +29,8 @@ when set. return fetchone(query) def fetchone(query): - """Return tuple containing one row by calling SQL directly + """Return tuple containing one row by calling SQL directly (the +original fetchone, but with logging) """ with Bench("SQL",LOG_SQL): @@ -47,5 +48,5 @@ def gn_server(path): res = urllib2.urlopen(GN_SERVER_URL+path) rest = res.read() res2 = json.loads(rest) - logger.info(res2) + logger.debug(res2) return res2 |