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()