From a5e33a13aefb1350a5dc34b86faa375f48b41239 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 14 Nov 2025 20:42:14 +0000 Subject: [PATCH 1/2] Initial plan From 06ce255fff8f8b52b915cd32de39ad2c38e332e5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 14 Nov 2025 20:47:51 +0000 Subject: [PATCH 2/2] Set default logging level to INFO Changed the logger_level array to start with INFO instead of ERROR, making INFO the default logging level when no verbose flags are used. This ensures users see important operational messages (including the ASCII art banner) without needing to pass -vvv. The new verbosity levels are: - Default (no flags): INFO - -v: DEBUG - -vv: TRACE ERROR and WARNING messages will still show at all levels since they are higher priority than INFO in loguru's logging hierarchy. Co-authored-by: philipbl <1527647+philipbl@users.noreply.github.com> --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index c14cea5..613910b 100644 --- a/main.py +++ b/main.py @@ -5,7 +5,7 @@ from runners import demo, kiosk, test, utils -logger_level = ["ERROR", "WARNING", "SUCCESS", "INFO", "DEBUG", "TRACE"] +logger_level = ["INFO", "DEBUG", "TRACE"] @click.group()