From efb4aca4f8a9af04253b5f167056081be7edbd81 Mon Sep 17 00:00:00 2001 From: Prometheus Date: Fri, 24 Apr 2026 20:38:47 +0200 Subject: [PATCH] chore: remove temporary debug log from streaming tool-call path Co-Authored-By: Claude Sonnet 4.6 --- backend/open_webui/utils/middleware.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/backend/open_webui/utils/middleware.py b/backend/open_webui/utils/middleware.py index c0f45c22cd..c9ec3fcdbd 100644 --- a/backend/open_webui/utils/middleware.py +++ b/backend/open_webui/utils/middleware.py @@ -4660,9 +4660,6 @@ async def streaming_chat_response_handler(response, ctx): tool_type = None direct_tool = False - log.info( - f'[MCP] tool_call: name="{tool_function_name}" found={tool_function_name in tools}' - ) if tool_function_name in tools: tool = tools[tool_function_name] spec = tool.get('spec', {})