mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
CLI: increase logging from ERROR to INFO level
ERROR level would only show errors and criticals and miss out on all info-level logging.
This commit is contained in:
parent
eb3fd5ae16
commit
ad908f5d16
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue