From 5f20102b33cd8bb7ec8473447105969e031c5997 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Fri, 26 Dec 2025 23:55:00 +0400 Subject: [PATCH] refac --- backend/open_webui/routers/chats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/open_webui/routers/chats.py b/backend/open_webui/routers/chats.py index 68adf6b548..44c083c10f 100644 --- a/backend/open_webui/routers/chats.py +++ b/backend/open_webui/routers/chats.py @@ -395,7 +395,7 @@ def export_chat_stats( ) except Exception as e: - log.exception(e) + log.debug(f"Error exporting chat stats: {e}") raise HTTPException( status_code=status.HTTP_400_BAD_REQUEST, detail=ERROR_MESSAGES.DEFAULT() )