From 6a9841682a8568927e7296bf82d02b44184a0262 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 12 Aug 2025 19:06:41 +0800 Subject: [PATCH] 1 --- app/core/websocket/adapter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/core/websocket/adapter.py b/app/core/websocket/adapter.py index c526ec7..47234f9 100644 --- a/app/core/websocket/adapter.py +++ b/app/core/websocket/adapter.py @@ -87,6 +87,7 @@ class WebSocketAdapter: try: # 从Channel接收消息 msg = await self.outbound_channel.receive_message(timeout=0.5) + logger.debug(f"适配器接收消息: {self.outbound_channel.name} -> msg: {msg}") if msg: # 将消息数据序列化为JSON字符串 import json