Reduce benign shutdown and platform log noise on macOS

This commit is contained in:
drjones
2026-05-24 12:31:20 -07:00
parent 267755912c
commit 4e6cceef36
2 changed files with 1 additions and 2 deletions

View File

@@ -128,7 +128,7 @@ class ChainService:
def _signal_handler(self, signum: int, frame: Any) -> None:
"""Received SIGTERM/SIGINT — stop cleanly and ensure firewall is disengaged."""
log.warning("Signal %s received — stopping ChainService.", signum)
log.info("Signal %s received — stopping ChainService.", signum)
self._stop.set()
terminate_process(self._proc)
fw_emergency_disengage()