diff --git a/changelog/4397.changed.md b/changelog/4397.changed.md new file mode 100644 index 000000000..3f90eef30 --- /dev/null +++ b/changelog/4397.changed.md @@ -0,0 +1 @@ +- Lowered the per-message log in `SmallWebRTCInputTransport._handle_app_message` from `debug` to `trace`. App messages can be high-frequency and were noisy at debug level; set the loguru level to `TRACE` to see them again. 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