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:
deeplow 2023-01-02 14:20:30 +00:00
parent eb3fd5ae16
commit ad908f5d16
No known key found for this signature in database
GPG key ID: 577982871529A52A

View file

@ -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: