diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/hostmanager.lua | 9 | ||||
-rw-r--r-- | core/modulemanager.lua | 2 |
2 files changed, 6 insertions, 5 deletions
diff --git a/core/hostmanager.lua b/core/hostmanager.lua index a46da058..64bb13f7 100644 --- a/core/hostmanager.lua +++ b/core/hostmanager.lua @@ -1,10 +1,10 @@ -hosts = {}; - local hosts = hosts; local configmanager = require "core.configmanager"; local eventmanager = require "core.eventmanager"; +local log = require "util.logger".init("hostmanager"); + local pairs = pairs; module "hostmanager" @@ -23,13 +23,13 @@ eventmanager.add_event_hook("server-starting", load_enabled_hosts); function activate(host, host_config) hosts[host] = {type = "local", connected = true, sessions = {}, host = host, s2sout = {} }; - + log("info", "Activated host: %s", host); eventmanager.fire_event("host-activated", host, host_config); end function deactivate(host) local host_session = hosts[host]; - + log("info", "Deactivating host: %s", host); eventmanager.fire_event("host-deactivating", host, host_session); -- Disconnect local users, s2s connections @@ -42,6 +42,7 @@ function deactivate(host) hosts[host] = nil; eventmanager.fire_event("host-deactivated", host); + log("info", "Deactivated host: %s", host); end function getconfig(name) diff --git a/core/modulemanager.lua b/core/modulemanager.lua index aec6358f..3f335c89 100644 --- a/core/modulemanager.lua +++ b/core/modulemanager.lua @@ -224,7 +224,7 @@ function api:add_feature(xmlns) end); end -api.add_event_hook = eventmanager.add_event_hook; +function api:add_event_hook (...) return eventmanager.add_event_hook(...); end local function __add_handler(module, origin_type, tag, xmlns, handler) local handlers = stanza_handlers[module.host]; |