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:
committed by
GitHub
parent
1b8af957f6
commit
f09c5feb7c
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user