From eeb7e615430135c99b3ec8a6b4cb05bc0f2404c5 Mon Sep 17 00:00:00 2001 From: Sebastian Noack Date: Fri, 2 Feb 2024 21:42:45 -0500 Subject: [PATCH] Log camera name and volume in addition to label and score when hearing sound --- frigate/events/audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/events/audio.py b/frigate/events/audio.py index ed457adf1..cfa4f76a3 100644 --- a/frigate/events/audio.py +++ b/frigate/events/audio.py @@ -211,7 +211,7 @@ class AudioEventMaintainer(threading.Thread): audio_detections = [] for label, score, _ in model_detections: - logger.debug(f"Heard {label} with a score of {score}") + logger.debug(f"Heard {label}; camera: {self.config.name}, score: {score}, volume: {rms}") if label not in self.config.audio.listen: continue