From 1f77752596e620b1cc656499742217f80472e72f Mon Sep 17 00:00:00 2001 From: xiaodong-ji Date: Tue, 13 Aug 2024 01:04:52 +0800 Subject: [PATCH] Change the warn prompt information to verbose --- diag_cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/diag_cmd.py b/diag_cmd.py index 2056cfda..1ffa72f0 100644 --- a/diag_cmd.py +++ b/diag_cmd.py @@ -883,7 +883,7 @@ def _input_parameters_scene(self, option, opt_str, value, parser): return except Exception as e: # raise Exception("Failed to parse input_parameters. Please check the option is json:{0}".format(value)) - ROOT_IO.warn(f"input_parameters option {value} is not json.") + ROOT_IO.verbose("input_parameters option {0} is not json.".format(value)) # input_parameters option is key=val format key, val = value.split('=', 1)