Log in hostmanager when a vhost is activated/deactivated

Sat, 06 Dec 2008 19:49:14 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Sat, 06 Dec 2008 19:49:14 +0000
changeset 575
428c951d0a33
parent 574
5963b780775d
child 576
c8442d9f02a5

Log in hostmanager when a vhost is activated/deactivated

core/hostmanager.lua file | annotate | diff | comparison | revisions
--- a/core/hostmanager.lua	Sat Dec 06 19:46:58 2008 +0000
+++ b/core/hostmanager.lua	Sat Dec 06 19:49:14 2008 +0000
@@ -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 @@
 
 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 @@
 	
 	hosts[host] = nil;
 	eventmanager.fire_event("host-deactivated", host);
+	log("info", "Deactivated host: %s", host);
 end
 
 function getconfig(name)

mercurial