From ad908f5d16bcea3a57513fe25c4eedb38bc3f5b7 Mon Sep 17 00:00:00 2001 From: deeplow Date: Mon, 2 Jan 2023 14:20:30 +0000 Subject: [PATCH] CLI: increase logging from ERROR to INFO level ERROR level would only show errors and criticals and miss out on all info-level logging. --- dangerzone/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dangerzone/cli.py b/dangerzone/cli.py index 4c9cbf9..32c1abb 100644 --- a/dangerzone/cli.py +++ b/dangerzone/cli.py @@ -109,7 +109,7 @@ def setup_logging() -> None: fmt = "%(message)s" logging.basicConfig(level=logging.DEBUG, format=fmt) else: - logging.basicConfig(level=logging.ERROR, format=fmt) + logging.basicConfig(level=logging.INFO, format=fmt) def display_banner() -> None: