Unverified Commit 4426447b authored by Harry Mellor's avatar Harry Mellor Committed by GitHub
Browse files

Don't log `exc_info` when vLLM tries to doenload a file that doesn't exist (#37458)


Signed-off-by: default avatarHarry Mellor <19981378+hmellor@users.noreply.github.com>
parent 3322e264
......@@ -240,7 +240,7 @@ def _try_download_from_hf_hub(
EntryNotFoundError,
LocalEntryNotFoundError,
) as e:
logger.debug("File or repository not found in hf_hub_download:", exc_info=e)
logger.debug("File or repository not found in hf_hub_download: %s", e)
return None
except HfHubHTTPError as e:
logger.warning(
......
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