mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.sql: Strip indentation from queries for debug logging
This commit is contained in:
parent
f2c30c688f
commit
b3cd19063f
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue