From d0f67fc189e42094d07ff1e5b680cff013aa2366 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Wed, 19 Feb 2025 21:43:29 -0800 Subject: [PATCH] BaseInputTransport: remove VAD logging These logs are very verbose. They were added to try to find an issue that resulted in being because of low CPU/memory resources, but these logs were not helpful to determine that. --- src/pipecat/transports/base_input.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pipecat/transports/base_input.py b/src/pipecat/transports/base_input.py index 42eb162da..ee7ae7f7c 100644 --- a/src/pipecat/transports/base_input.py +++ b/src/pipecat/transports/base_input.py @@ -174,11 +174,9 @@ class BaseInputTransport(FrameProcessor): async def _vad_analyze(self, audio_frame: InputAudioRawFrame) -> VADState: state = VADState.QUIET if self.vad_analyzer: - logger.trace(f"{self}: analyzing VAD on {audio_frame}") state = await self.get_event_loop().run_in_executor( self._executor, self.vad_analyzer.analyze_audio, audio_frame.audio ) - logger.trace(f"{self}: done analyzing VAD on {audio_frame}") return state async def _handle_vad(self, audio_frame: InputAudioRawFrame, vad_state: VADState):