From c41e5bcafad34e5bd0af816397eb3678ccf37878 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 11 Apr 2026 17:40:36 -0500 Subject: [PATCH] Fix misleading Edge TPU log message after probe fallback Co-Authored-By: Claude Opus 4.6 (1M context) --- headmic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headmic.py b/headmic.py index 2888c26..3a24c70 100644 --- a/headmic.py +++ b/headmic.py @@ -478,7 +478,7 @@ async def startup(): sound_classifier = SoundClassifier(str(active_model), str(class_map_path), use_edgetpu=use_edgetpu) sound_ring_buffer = collections.deque(maxlen=31) state.sound_classification_enabled = True - logger.info("Sound classification enabled (YAMNet %s)", "Edge TPU" if use_edgetpu else "CPU") + logger.info("Sound classification enabled") sc_thread = threading.Thread(target=sound_classifier_loop, daemon=True) sc_thread.start()