From 6cab2ce3f744a3ebb8295f9a34f02c1a4cc1cad0 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Thu, 30 Apr 2026 21:06:47 -0400 Subject: [PATCH] chore(smallwebrtc): lower app message log to trace level App messages can be high-frequency, so logging each one at debug is noisy. --- src/pipecat/transports/smallwebrtc/transport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/transports/smallwebrtc/transport.py b/src/pipecat/transports/smallwebrtc/transport.py index 0d96d4aa6..080f2383d 100644 --- a/src/pipecat/transports/smallwebrtc/transport.py +++ b/src/pipecat/transports/smallwebrtc/transport.py @@ -706,7 +706,7 @@ class SmallWebRTCInputTransport(BaseInputTransport): Args: message: The application message to process. """ - logger.debug(f"Received app message inside SmallWebRTCInputTransport {message}") + logger.trace(f"Received app message inside SmallWebRTCInputTransport {message}") await self.broadcast_frame(InputTransportMessageFrame, message=message) # Add this method similar to DailyInputTransport.request_participant_image