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

Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
This commit is contained in:
Harry Mellor
2026-03-19 10:38:29 +00:00
committed by GitHub
parent 3322e26420
commit 4426447bba

View File

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