mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
modulemanager: Silence log message about attempts to load already loaded modules for shared modules
This commit is contained in:
parent
f739ed2c46
commit
487f77d6ef
1 changed files with 3 additions and 1 deletions
|
@ -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];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue