Change warning in get_current_vllm_config to report caller's line number (#31855)

Signed-off-by: Tyler Michael Smith <tlrmchlsmth@gmail.com>
This commit is contained in:
Tyler Michael Smith
2026-01-06 22:48:13 -05:00
committed by GitHub
parent 1b8af957f6
commit f09c5feb7c

View File

@@ -1444,7 +1444,9 @@ def get_current_vllm_config() -> VllmConfig:
# in ci, usually when we test custom ops/modules directly,
# we don't set the vllm config. In that case, we set a default
# config.
logger.warning("Current vLLM config is not set.")
# Use stack level 2 so the log contains the line of the caller,
# so it's easier to track down the source of the warning.
logger.warning("Current vLLM config is not set.", stacklevel=2)
return VllmConfig()
return _current_vllm_config