aboutsummaryrefslogtreecommitdiffstats
path: root/util/sql.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-04-12 18:57:40 +0200
committerKim Alvefur <zash@zash.se>2017-04-12 18:57:40 +0200
commitb3cd19063f63fa426f35523bfb77be45d1e0dd4e (patch)
tree48d570b1bdd8e433a50066d6c17c090156fcb807 /util/sql.lua
parentf2c30c688f39ac5eb03ae924ad2b59be0ff79712 (diff)
downloadprosody-b3cd19063f63fa426f35523bfb77be45d1e0dd4e.tar.gz
prosody-b3cd19063f63fa426f35523bfb77be45d1e0dd4e.zip
util.sql: Strip indentation from queries for debug logging
Diffstat (limited to 'util/sql.lua')
-rw-r--r--util/sql.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/sql.lua b/util/sql.lua
index c7a79278..f7c68ed3 100644
--- a/util/sql.lua
+++ b/util/sql.lua
@@ -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