Skip to content

Commit 06ce255

Browse files
Copilotphilipbl
andcommitted
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>
1 parent a5e33a1 commit 06ce255

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from runners import demo, kiosk, test, utils
77

8-
logger_level = ["ERROR", "WARNING", "SUCCESS", "INFO", "DEBUG", "TRACE"]
8+
logger_level = ["INFO", "DEBUG", "TRACE"]
99

1010

1111
@click.group()

0 commit comments

Comments
 (0)