From 2534f59398334fb0ce05fe9e3a43be47fb2b5e99 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Thu, 10 Jul 2025 16:59:58 +0800 Subject: [PATCH] chore: remove debug print statement from chat route --- astrbot/dashboard/routes/chat.py | 1 - 1 file changed, 1 deletion(-) diff --git a/astrbot/dashboard/routes/chat.py b/astrbot/dashboard/routes/chat.py index 9e090474c..651f1b65c 100644 --- a/astrbot/dashboard/routes/chat.py +++ b/astrbot/dashboard/routes/chat.py @@ -156,7 +156,6 @@ class ChatRoute(Route): while True: try: result = await asyncio.wait_for(back_queue.get(), timeout=10) - print(f"Received result: {result}") except asyncio.TimeoutError: continue