From f7bab41a299f7fab97f1868d606ebc53faea35aa Mon Sep 17 00:00:00 2001 From: Simo Lin Date: Thu, 25 Sep 2025 20:32:59 -0400 Subject: [PATCH] [router] change log level to warning (#10926) --- sgl-router/py_test/e2e/conftest.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sgl-router/py_test/e2e/conftest.py b/sgl-router/py_test/e2e/conftest.py index c170ec09f..c959095e7 100644 --- a/sgl-router/py_test/e2e/conftest.py +++ b/sgl-router/py_test/e2e/conftest.py @@ -114,6 +114,8 @@ def _popen_launch_worker( port, "--base-gpu-id", str(base_gpu_id or 0), + "--log-level", + "warning", ] if dp_size is not None: cmd += ["--dp-size", str(dp_size)] @@ -156,6 +158,8 @@ def _popen_launch_router_only( str(prom_port), "--prometheus-host", "127.0.0.1", + "--log-level", + "warn", ] proc = subprocess.Popen(cmd) _wait_router_health(base_url, timeout)