Diff

core/componentmanager.lua @ 1100:05d209ef9661

Merge with 0.4
author Matthew Wild <mwild1@gmail.com>
date Sun, 03 May 2009 01:11:21 +0100
parent 1066:0cb325970a50
parent 1096:266ef0c6b1d0
child 1168:dd523bfc9ea9
line wrap: on
line diff
--- a/core/componentmanager.lua	Sat May 02 17:03:48 2009 +0100
+++ b/core/componentmanager.lua	Sun May 03 01:11:21 2009 +0100
@@ -44,7 +44,7 @@
 	end
 end
 
-
+local components_loaded_once;
 function load_enabled_components(config)
 	local defined_hosts = config or configmanager.getconfig();
 		
@@ -56,7 +56,7 @@
 			if not ok then
 				log("error", "Error loading %s component %s: %s", tostring(host_config.core.component_module), tostring(host), tostring(err));
 			else
-				log("info", "Activated %s component: %s", host_config.core.component_module, host);
+				log("debug", "Activated %s component: %s", host_config.core.component_module, host);
 			end
 		end
 	end