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:
Sunil Mohan Adapa 2019-09-06 17:14:45 -07:00 committed by James Valleroy
parent 526123b6dd
commit c4ab81252c
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -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)