# HG changeset patch # User Kim Alvefur # Date 1409129182 -7200 # Node ID f12889981eced1c2f27beadda7f0b5560fc2c31f # Parent ffcd3992a40cf3129bb9b6cfb1754fb0f3b974a4 modulemanager: Reduce warning to debug level message about modules already being loaded, it's probably just module:depends() diff -r ffcd3992a40c -r f12889981ece core/modulemanager.lua --- a/core/modulemanager.lua Wed Aug 27 10:44:45 2014 +0200 +++ b/core/modulemanager.lua Wed Aug 27 10:46:22 2014 +0200 @@ -123,7 +123,7 @@ 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];