Browse Source

refac: use logging instead of print

Thomas Rehn 3 weeks ago
parent
commit
81af20aa9b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      backend/open_webui/utils/tools.py

+ 1 - 1
backend/open_webui/utils/tools.py

@@ -407,7 +407,7 @@ async def get_tool_server_data(token: str, url: str) -> Dict[str, Any]:
                 else:
                     res = await response.json()
     except Exception as err:
-        print("Error:", err)
+        log.exception(f"Could not fetch tool server spec from {url}")
         if isinstance(err, dict) and "detail" in err:
             error = err["detail"]
         else: