1
0
Эх сурвалжийг харах

refac: use logging instead of print

Thomas Rehn 1 сар өмнө
parent
commit
81af20aa9b

+ 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: