Remove logging for subprocess watchdog start (#21968)

This commit is contained in:
Lianmin Zheng
2026-04-02 11:30:33 -07:00
committed by GitHub
parent 8732b2e9c6
commit fe38410c3e
-3
View File
@@ -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()