From 02febaca08b137a647bf16627baf390302a2df52 Mon Sep 17 00:00:00 2001 From: "fangyaozheng@bytedance.com" Date: Fri, 12 Sep 2025 18:37:08 +0800 Subject: [PATCH] fix(web): set Google web logging level to error --- veadk/cli/cli_web.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/veadk/cli/cli_web.py b/veadk/cli/cli_web.py index 84acdce3..9bbf8334 100644 --- a/veadk/cli/cli_web.py +++ b/veadk/cli/cli_web.py @@ -178,4 +178,6 @@ def init_for_veadk( agents_dir = os.getcwd() logger.info(f"Load agents from {agents_dir}") - cli_tools_click.cli_web.main(args=[agents_dir, "--host", host]) + cli_tools_click.cli_web.main( + args=[agents_dir, "--host", host, "--log_level", "ERROR"] + )