From bb1315fa63f7d762c3d5fb0543c05696aa737d21 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sun, 26 Feb 2023 12:35:57 -0600 Subject: [PATCH] Set default log level to WARNING This ensures that the only output comes from the container process by default. --- src/ocivm/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ocivm/cli.py b/src/ocivm/cli.py index 20319dd..7870fb5 100644 --- a/src/ocivm/cli.py +++ b/src/ocivm/cli.py @@ -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', )