Set default log level to WARNING

This ensures that the only output comes from the container process by
default.
master
Dustin 2023-02-26 12:35:57 -06:00
parent 02b97364fc
commit bb1315fa63
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ def parse_args() -> argparse.Namespace:
)
parser.add_argument(
'--log-level',
default='INFO',
default='WARNING',
choices=('CRITICAL', 'ERROR', 'WARNING', 'INFO', 'DEBUG'),
help='Set CLI log level',
)