Mercurial > prosody-modules
view mod_log_events/mod_log_events.lua @ 5734:cef8bce2d71b
luacheck: Add new module API methods from trunk
See
* trunk rev 4d4f9e42bcf8
* trunk rev 65fb0d7a2312
* trunk rev c9ef35fab0b1
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 27 Nov 2023 07:10:06 +0100 |
parents | 0e008f36a91c |
children |
line wrap: on
line source
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