From 49e7723405c527d295c73625723da76de4585fa2 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sat, 7 Oct 2023 08:23:11 -0600 Subject: [PATCH] Add debug logs for audio labels (#8080) --- frigate/events/audio.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frigate/events/audio.py b/frigate/events/audio.py index a48061091..f06b593c1 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