mod_muc: The default room name is the room node
[prosody.git] / core / hostmanager.lua
index a46da058ea07923e8891b6a675a45898156f4565..1fec97999d1dcadb868558726d552bd61efd9737 100644 (file)
@@ -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"
@@ -17,19 +17,20 @@ local function load_enabled_hosts(config)
                        activate(host, host_config);
                end
        end
+       eventmanager.fire_event("hosts-activated", defined_hosts);
 end
 
 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 +43,7 @@ function deactivate(host)
        
        hosts[host] = nil;
        eventmanager.fire_event("host-deactivated", host);
+       log("info", "Deactivated host: %s", host);
 end
 
 function getconfig(name)