diff --git a/src/dailyai/services/daily_transport_service.py b/src/dailyai/services/daily_transport_service.py index 2353c2678..94c0078f5 100644 --- a/src/dailyai/services/daily_transport_service.py +++ b/src/dailyai/services/daily_transport_service.py @@ -268,11 +268,11 @@ def on_transcription_message(self, message: dict): frame = TranscriptionQueueFrame(message["text"], participantId, message["timestamp"]) asyncio.run_coroutine_threadsafe(self.receive_queue.put(frame), self._loop) - def on_transcription_stopped(self, stopped_by, stopped_by_error): - pass - def on_transcription_error(self, message): - pass + self._logger.error(f"Transcription error: {message}") def on_transcription_started(self, status): pass + + def on_transcription_stopped(self, stopped_by, stopped_by_error): + pass