# HG changeset patch # User Matthew Wild # Date 1427802268 -3600 # Node ID 9276473ee5be3ab2eeb0f72ea4dd1ae48e3ccf7f # Parent b877b75eb97385136d1d25ea16458ebccbb3f688 mod_log_events: Module to log all events on the server/host diff -r b877b75eb973 -r 9276473ee5be mod_log_events/mod_log_events.lua --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_log_events/mod_log_events.lua Tue Mar 31 12:44:28 2015 +0100 @@ -0,0 +1,13 @@ +module:set_global(); + +local helpers = require "util.helpers"; + +helpers.log_events(prosody.events, "global", module._log); + +function module.add_host(module) + helpers.log_events(prosody.hosts[module.host].events, module.host, module._log); +end + +function module.remove_host(module) + helpers.revert_log_events(prosody.hosts[module.host].events); +end