Mercurial > prosody-modules
view mod_log_events/mod_log_events.lua @ 2251:48c3d64a3fc1
mod_smacks: Signal that we're about to send an ack request from read timeout event to prevent a duplicate request from outgoing stanza filter
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Tue, 26 Jul 2016 12:37:04 +0200 |
| 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
