mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
util.helpers: Helper helpers to log host events
This commit is contained in:
parent
3230dc4c0a
commit
2aa7b4448e
1 changed files with 8 additions and 0 deletions
|
@ -14,6 +14,14 @@ module("helpers", package.seeall);
|
||||||
|
|
||||||
local log = require "util.logger".init("util.debug");
|
local log = require "util.logger".init("util.debug");
|
||||||
|
|
||||||
|
function log_host_events(host)
|
||||||
|
return log_events(prosody.hosts[host].events, host);
|
||||||
|
end
|
||||||
|
|
||||||
|
function revert_log_host_events(host)
|
||||||
|
return revert_log_events(prosody.hosts[host].events);
|
||||||
|
end
|
||||||
|
|
||||||
function log_events(events, name, logger)
|
function log_events(events, name, logger)
|
||||||
local f = events.fire_event;
|
local f = events.fire_event;
|
||||||
if not f then
|
if not f then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue