mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 22:33:00 -04:00
cli: reduce default logging verbosity
This commit is contained in:
parent
06a53cb7df
commit
18d38e5256
1 changed files with 2 additions and 2 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Reference in a new issue