Skip to content

Commit 58e92b8

Browse files
committed
fix: change verbose to debug
1 parent a7c2d40 commit 58e92b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

interface/ten_ai_base/asr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ async def _handle_audio_frame(
379379
return
380380

381381
if not self.is_connected():
382-
ten_env.log_verbose("send_frame: service not connected.")
382+
ten_env.log_debug("send_frame: service not connected.")
383383
buffer_strategy = self.buffer_strategy()
384384
if isinstance(buffer_strategy, ASRBufferConfigModeKeep):
385385
byte_limit = buffer_strategy.byte_limit

interface/ten_ai_base/mllm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ async def _handle_audio_frame(
405405
return
406406

407407
if not self.is_connected():
408-
ten_env.log_verbose("send_frame: service not connected.")
408+
ten_env.log_debug("send_frame: service not connected.")
409409
buffer_strategy = self.buffer_strategy()
410410
if isinstance(buffer_strategy, MLLMBufferConfigModeKeep):
411411
byte_limit = buffer_strategy.byte_limit

0 commit comments

Comments
 (0)