From 18d38e525625a2a0d8dcce4c7a8e19bc10478e57 Mon Sep 17 00:00:00 2001 From: Alex Zorin Date: Tue, 23 Feb 2021 15:09:57 +1100 Subject: [PATCH] cli: reduce default logging verbosity --- certbot/certbot/_internal/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/certbot/certbot/_internal/constants.py b/certbot/certbot/_internal/constants.py index f79d6b9db..61895edb1 100644 --- a/certbot/certbot/_internal/constants.py +++ b/certbot/certbot/_internal/constants.py @@ -22,7 +22,7 @@ CLI_DEFAULTS = dict( ], # Main parser - verbose_count=-int(logging.INFO / 10), + verbose_count=-int(logging.WARNING / 10), text_mode=False, max_log_backups=1000, preconfigured_renewal=False, @@ -139,7 +139,7 @@ REVOCATION_REASONS = { """Defaults for CLI flags and `.IConfig` attributes.""" -QUIET_LOGGING_LEVEL = logging.WARNING +QUIET_LOGGING_LEVEL = logging.ERROR """Logging level to use in quiet mode.""" RENEWER_DEFAULTS = dict(