Mercurial > prosody-hg
view plugins/mod_debug_sql.lua @ 7860:49ff363f3a3d
mod_watchregistrations: add a "registration_from" option
This option, if set, makes all registration notifications come from a single
JID, regardless of which virtualhost it comes from.
| author | mathieui |
|---|---|
| date | Tue, 24 Jan 2017 21:13:23 +0100 |
| parents | b8bbd5f91ad9 |
| children | 5edb0d01a94f |
line wrap: on
line source
-- Enables SQL query logging -- -- luacheck: ignore 213/uri 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
