From 7c17700dfbf7668b90c5a126b197406702bc0ebc Mon Sep 17 00:00:00 2001 From: Ziheng Li Date: Wed, 1 Jun 2022 14:51:58 +0800 Subject: [PATCH] board_inspector:refine board_inspector.py Completed the five log level information in help output list. Tracked-On: #7654 Signed-off-by: Ziheng Li --- misc/config_tools/board_inspector/board_inspector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/config_tools/board_inspector/board_inspector.py b/misc/config_tools/board_inspector/board_inspector.py index 11910e623..d121903be 100755 --- a/misc/config_tools/board_inspector/board_inspector.py +++ b/misc/config_tools/board_inspector/board_inspector.py @@ -216,7 +216,7 @@ if __name__ == "__main__": parser.add_argument("board_name", help="the name of the board that runs the ACRN hypervisor") parser.add_argument("--out", help="the name of board info file") parser.add_argument("--basic", action="store_true", default=False, help="do not extract advanced information such as ACPI namespace") - parser.add_argument("--loglevel", default="info", help="choose log level, e.g. info, warning or error") + parser.add_argument("--loglevel", default="info", help="choose log level, e.g. debug, info, warning, error or critical") parser.add_argument("--check-device-status", action="store_true", default=False, help="filter out devices whose _STA object evaluates to 0") parser.add_argument("--add-llc-cat", default=None, action=AddLLCCATAction, metavar=",,", help="manually set the Cache Allocation Technology capability of the last level cache")