From 33d738b31b353433d104ff0104c6bb49ffe8ac7e Mon Sep 17 00:00:00 2001 From: Siwat Sirichai Date: Fri, 26 Sep 2025 19:42:57 +0700 Subject: [PATCH] fix: remove unused watchdog logging configuration and FrameFileHandler --- core/streaming/readers.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/core/streaming/readers.py b/core/streaming/readers.py index 5684997..c8c0ec3 100644 --- a/core/streaming/readers.py +++ b/core/streaming/readers.py @@ -43,11 +43,6 @@ def log_info(camera_id: str, message: str): """Log info in cyan""" logger.info(f"{Colors.CYAN}[{camera_id}] {message}{Colors.END}") -# Removed watchdog logging configuration - no longer using file watching - - -# Removed FrameFileHandler - no longer using file watching - class FFmpegRTSPReader: """RTSP stream reader using subprocess FFmpeg piping frames directly to buffer."""