Changing error message to info, to avoid confusion

This commit is contained in:
Nex 2021-07-25 10:46:10 +02:00
parent 6d0ff11540
commit 9d9b77e02e
1 changed files with 2 additions and 2 deletions

View File

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