From 9d9b77e02e6b742ce4e47939e4dab5619214dc9f Mon Sep 17 00:00:00 2001 From: Nex Date: Sun, 25 Jul 2021 10:46:10 +0200 Subject: [PATCH] Changing error message to info, to avoid confusion --- mvt/common/module.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mvt/common/module.py b/mvt/common/module.py index 3dd2ae8..ce02cf2 100644 --- a/mvt/common/module.py +++ b/mvt/common/module.py @@ -137,8 +137,8 @@ def run_module(module): module.log.exception("The run() procedure of module %s was not implemented yet!", module.__class__.__name__) except FileNotFoundError as e: - module.log.error("There might be no data to extract by module %s: %s", - module.__class__.__name__, e) + module.log.info("There might be no data to extract by module %s: %s", + module.__class__.__name__, e) except Exception as e: module.log.exception("Error in running extraction from module %s: %s", module.__class__.__name__, e)