mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +00:00
module_loader: Remove log message when app is imported
It is no longer very useful and floods the log window, taking our attention away from more import things. It is only useful during new module development. Module load order message helps anyway. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
parent
526123b6dd
commit
c4ab81252c
@ -50,7 +50,6 @@ def load_modules():
|
||||
pre_module_loading.send_robust(sender="module_loader")
|
||||
modules = {}
|
||||
for module_import_path in get_modules_to_load():
|
||||
logger.debug('Importing %s', module_import_path)
|
||||
module_name = module_import_path.split('.')[-1]
|
||||
try:
|
||||
modules[module_name] = importlib.import_module(module_import_path)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user