"src/vscode:/vscode.git/clone" did not exist on "3ebbaf7c96801271f9e6c21400033b6aa5ffcf29"
Unverified Commit f7bab41a authored by Simo Lin's avatar Simo Lin Committed by GitHub
Browse files

[router] change log level to warning (#10926)

parent f68dd998
...@@ -114,6 +114,8 @@ def _popen_launch_worker( ...@@ -114,6 +114,8 @@ def _popen_launch_worker(
port, port,
"--base-gpu-id", "--base-gpu-id",
str(base_gpu_id or 0), str(base_gpu_id or 0),
"--log-level",
"warning",
] ]
if dp_size is not None: if dp_size is not None:
cmd += ["--dp-size", str(dp_size)] cmd += ["--dp-size", str(dp_size)]
...@@ -156,6 +158,8 @@ def _popen_launch_router_only( ...@@ -156,6 +158,8 @@ def _popen_launch_router_only(
str(prom_port), str(prom_port),
"--prometheus-host", "--prometheus-host",
"127.0.0.1", "127.0.0.1",
"--log-level",
"warn",
] ]
proc = subprocess.Popen(cmd) proc = subprocess.Popen(cmd)
_wait_router_health(base_url, timeout) _wait_router_health(base_url, timeout)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment