From e7f266b8614077f6042dee8aeba68cf0a712e8e7 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 6 Oct 2023 06:20:44 -0600 Subject: [PATCH] Add debug logs for audio labels --- frigate/events/audio.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frigate/events/audio.py b/frigate/events/audio.py index 76bfd5fa8..89b7f1d8e 100644 --- a/frigate/events/audio.py +++ b/frigate/events/audio.py @@ -196,6 +196,8 @@ class AudioEventMaintainer(threading.Thread): model_detections = self.detector.detect(waveform) for label, score, _ in model_detections: + logger.debug(f"Heard {label} with a score of {score}") + if label not in self.config.audio.listen: continue