Merge pull request #4397 from pipecat-ai/mb/smallwebrtc-trace-app-message
This commit is contained in:
1
changelog/4397.changed.md
Normal file
1
changelog/4397.changed.md
Normal file
@@ -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.
|
||||||
@@ -706,7 +706,7 @@ class SmallWebRTCInputTransport(BaseInputTransport):
|
|||||||
Args:
|
Args:
|
||||||
message: The application message to process.
|
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)
|
await self.broadcast_frame(InputTransportMessageFrame, message=message)
|
||||||
|
|
||||||
# Add this method similar to DailyInputTransport.request_participant_image
|
# Add this method similar to DailyInputTransport.request_participant_image
|
||||||
|
|||||||
Reference in New Issue
Block a user