util.sql: Strip indentation from queries for debug logging

This commit is contained in:
Kim Alvefur 2017-04-12 18:57:40 +02:00
parent f2c30c688f
commit b3cd19063f

View file

@ -160,6 +160,7 @@ local result_mt = { __index = {
local function debugquery(where, sql, ...)
local i = 0; local a = {...}
sql = sql:gsub("\n?\t+", " ");
log("debug", "[%s] %s", where, sql:gsub("%?", function () i = i + 1; local v = a[i]; if type(v) == "string" then v = ("%q"):format(v); end return tostring(v); end));
end