fix: restore forward_syslog as no-op stub; all service server.py files import it

This commit is contained in:
2026-04-10 00:43:50 -04:00
parent 24f02c3466
commit 40cd582253

View File

@@ -82,3 +82,8 @@ def syslog_line(
def write_syslog_file(line: str) -> None: def write_syslog_file(line: str) -> None:
"""Emit a syslog line to stdout for Docker log capture.""" """Emit a syslog line to stdout for Docker log capture."""
print(line, flush=True) print(line, flush=True)
def forward_syslog(line: str, log_target: str) -> None:
"""No-op stub. TCP forwarding is now handled by rsyslog, not by service containers."""
pass