refactor: suppress noisy watchdog debug logs for cleaner output
Some checks failed
Build Worker Base and Application Images / check-base-changes (push) Successful in 7s
Build Worker Base and Application Images / build-base (push) Has been skipped
Build Worker Base and Application Images / build-docker (push) Successful in 2m53s
Build Worker Base and Application Images / deploy-stack (push) Failing after 12s

This commit is contained in:
Siwat Sirichai 2025-09-26 02:35:27 +07:00
parent 2742b86961
commit 95c39a008f

View file

@ -21,6 +21,9 @@ os.environ["OPENCV_FFMPEG_LOGLEVEL"] = "-8" # Suppress FFMPEG warnings
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
# Suppress noisy watchdog debug logs
logging.getLogger('watchdog.observers.inotify_buffer').setLevel(logging.CRITICAL)
class FrameFileHandler(FileSystemEventHandler): class FrameFileHandler(FileSystemEventHandler):
"""File system event handler for frame file changes.""" """File system event handler for frame file changes."""