modulemanager: Reduce warning to debug level message about modules already being...
authorKim Alvefur <zash@zash.se>
Wed, 27 Aug 2014 08:46:22 +0000 (10:46 +0200)
committerKim Alvefur <zash@zash.se>
Wed, 27 Aug 2014 08:46:22 +0000 (10:46 +0200)
core/modulemanager.lua

index cddab6472bee107bfe6f237c080b2c2b404e8d52..4df950697d905984808ac38eec0d030b36f9c9cf 100644 (file)
@@ -123,7 +123,7 @@ local function do_load_module(host, module_name, state)
        end
        
        if modulemap[host][module_name] then
-               log("warn", "%s is already loaded for %s, so not loading again", module_name, host);
+               log("debug", "%s is already loaded for %s, so not loading again", module_name, host);
                return nil, "module-already-loaded";
        elseif modulemap["*"][module_name] then
                local mod = modulemap["*"][module_name];