Fix error logging in build_vertex function
This commit is contained in:
parent
63a79b9106
commit
533a1ef925
1 changed files with 1 additions and 1 deletions
|
|
@ -181,7 +181,7 @@ async def build_vertex(
|
|||
result_data_response = ResultDataResponse(**result_dict.model_dump())
|
||||
|
||||
except Exception as exc:
|
||||
logger.error(f"Error building vertex: {exc}")
|
||||
logger.exception(f"Error building vertex: {exc}")
|
||||
params = format_exception_message(exc)
|
||||
valid = False
|
||||
result_data_response = ResultDataResponse(results={})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue