forked from phoenix-oss/llama-stack-mirror
fix: server logging (#1521)
Summary: Test Plan: ERROR 2025-03-10 10:53:00,804 __main__:239 server: Error executing endpoint route='/v1/inference/chat-completion' method='post'
This commit is contained in:
parent
921f8b1125
commit
0e3c0cf8de
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ def create_dynamic_typed_route(func: Any, method: str, route: str):
|
||||||
value = func(**kwargs)
|
value = func(**kwargs)
|
||||||
return await maybe_await(value)
|
return await maybe_await(value)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.exception("Error executing endpoint %s", method, route)
|
logger.exception(f"Error executing endpoint {route=} {method=}")
|
||||||
raise translate_exception(e) from e
|
raise translate_exception(e) from e
|
||||||
|
|
||||||
sig = inspect.signature(func)
|
sig = inspect.signature(func)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue