mod_log_events/mod_log_events.lua
author Matthew Wild <mwild1@gmail.com>
Sun, 04 Sep 2022 09:51:36 +0100
changeset 5041 8a8100fff580
parent 1999 0e008f36a91c
permissions -rw-r--r--
mod_sasl2_bind2, mod_sasl2_sm: Move sasl2_sm_success to session ...to allow referencing it across multiple different events.

module:set_global();

local helpers = require "util.helpers";

local function init(module, events, name)
	helpers.log_events(events, name, module._log);

	function module.unload()
		helpers.revert_log_events(events);
	end
end

init(module, prosody.events, "global");

function module.add_host(module)
	init(module, prosody.hosts[module.host].events, module.host);
end