From fe38410c3eac473718ae8e79f7e5c4e570e946c0 Mon Sep 17 00:00:00 2001 From: Lianmin Zheng Date: Thu, 2 Apr 2026 11:30:33 -0700 Subject: [PATCH] Remove logging for subprocess watchdog start (#21968) --- python/sglang/srt/utils/watchdog.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/sglang/srt/utils/watchdog.py b/python/sglang/srt/utils/watchdog.py index d4fde7406..092ff887f 100644 --- a/python/sglang/srt/utils/watchdog.py +++ b/python/sglang/srt/utils/watchdog.py @@ -193,9 +193,6 @@ class SubprocessWatchdog: target=self._monitor_loop, daemon=True, name="subprocess-watchdog" ) self._thread.start() - logger.info( - f"SubprocessWatchdog started, monitoring {len(self._processes)} process(es)" - ) def stop(self) -> None: self._stop_event.set()