From 3733a179f310a6e2605d6307937eb0d829c2ab68 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Mon, 2 Jan 2023 13:33:35 +0100 Subject: [PATCH] from debug to info --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 21527ea..0dd9dfe 100644 --- a/main.py +++ b/main.py @@ -15,7 +15,7 @@ def setup_args() -> Namespace: if __name__ == "__main__": args = setup_args() - log.debug(f'Read config from "{args.configfile}"') + log.info(f'Read config from "{args.configfile}"') conf = config.read_config(args.configfile) log.debug('Compiling regex') compile_regex(conf)