modulemanager: Silence log message about attempts to load already loaded modules for shared modules

This commit is contained in:
Kim Alvefur 2016-03-19 16:35:43 +01:00
parent f739ed2c46
commit 487f77d6ef

View file

@ -125,7 +125,9 @@ local function do_load_module(host, module_name, state)
end
if modulemap[host][module_name] then
log("debug", "%s is already loaded for %s, so not loading again", module_name, host);
if not modulemap["*"][module_name] then
log("debug", "%s is already loaded for %s, so not loading again", module_name, host);
end
return nil, "module-already-loaded";
elseif modulemap["*"][module_name] then
local mod = modulemap["*"][module_name];