From c4ab81252cf9f788f47caa4aeda73f6a7d450a38 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Fri, 6 Sep 2019 17:14:45 -0700 Subject: [PATCH] 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 Reviewed-by: James Valleroy --- plinth/module_loader.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plinth/module_loader.py b/plinth/module_loader.py index edd90792a..0caf2f1f8 100644 --- a/plinth/module_loader.py +++ b/plinth/module_loader.py @@ -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)