From 1d4e625b8beac012e9ece6b4ecaa32fdbef04e80 Mon Sep 17 00:00:00 2001 From: CakeCN Date: Wed, 10 Dec 2025 22:35:41 +0800 Subject: [PATCH] reduce some log --- Html/apps/sockets/namespaces.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Html/apps/sockets/namespaces.py b/Html/apps/sockets/namespaces.py index 1c7952f..507f2a1 100644 --- a/Html/apps/sockets/namespaces.py +++ b/Html/apps/sockets/namespaces.py @@ -199,7 +199,6 @@ class AgentNamespace(Namespace): if data['type'] == 'text': res = user_uuid2ase_client[uuid].send_text('dialog', data['data']) chatmanager[uuid].chat_historys.append({'role': 'user', 'content': data['data']}) - self.app.logger.info(f"Send text to route 'dialog' success: {res}") if data['type'] == 'function': # 在这里 前端会发送允许执行的function与参数 self.app.logger.info(f"function_call: {data['data']}")