File

plugins/mod_debug_sql.lua @ 7264:6d97895c2bd7

util.dependencies: Show the full error when a symbol is not found (i.e., when running Prosody with the wrong version of Lua).
author Thijs Alkemade <me@thijsalkema.de>
date Thu, 10 Mar 2016 10:13:57 +0100 (2016-03-10)
parent 7176:b8bbd5f91ad9
child 8391: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