From 08db0d35c990a746bb4ded4f7b26d21bdd22b3f9 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 6 Aug 2024 15:57:12 -0600 Subject: [PATCH] Add camera name to audio debug line --- 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 fca16f364..4b11130f0 100644 --- a/frigate/events/audio.py +++ b/frigate/events/audio.py @@ -209,7 +209,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"{self.config.name} heard {label} with a score of {score}") if label not in self.config.audio.listen: continue