refac: use logging instead of print

This commit is contained in:
Thomas Rehn 2025-04-08 15:13:58 +02:00
parent 27e8c6fce4
commit 81af20aa9b

View File

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