"vllm/vscode:/vscode.git/clone" did not exist on "5e714f7ff4166d62b5f923766a0268a1758f2a61"
Unverified Commit d3cbaa08 authored by Harry Mellor's avatar Harry Mellor Committed by GitHub
Browse files

Lower sevarity of log when model info cache misses due to exception (#26917)


Signed-off-by: default avatarHarry Mellor <19981378+hmellor@users.noreply.github.com>
parent 828523ad
...@@ -581,7 +581,7 @@ class _LazyRegisteredModel(_BaseRegisteredModel): ...@@ -581,7 +581,7 @@ class _LazyRegisteredModel(_BaseRegisteredModel):
# file not changed, use cached _ModelInfo properties # file not changed, use cached _ModelInfo properties
return _ModelInfo(**mi_dict["modelinfo"]) return _ModelInfo(**mi_dict["modelinfo"])
except Exception: except Exception:
logger.exception( logger.debug(
("Cached model info for class %s.%s error. "), ("Cached model info for class %s.%s error. "),
self.module_name, self.module_name,
self.class_name, self.class_name,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment