Mercurial > prosody-hg
view plugins/mod_debug_sql.lua @ 11187:76e135fbca0f
mod_pubsub: Clarify kind of item store created
Planning to make this configurable, so good to distinguish it from
future backends.
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sun, 25 Oct 2020 15:21:34 +0100 |
| parents | 5edb0d01a94f |
| children |
line wrap: on
line source
-- Enables SQL query logging -- -- luacheck: ignore 213/uri module:set_global(); local engines = module:shared("/*/sql/connections"); for uri, engine in pairs(engines) do engine:debug(true); end setmetatable(engines, { __newindex = function (t, uri, engine) engine:debug(true); rawset(t, uri, engine); end }); function module.unload() setmetatable(engines, nil); for uri, engine in pairs(engines) do engine:debug(false); end end
