Skip to content

Commit

Permalink
[V1] Include Engine Version in Logs (vllm-project#12496)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertgshaw2-redhat authored and rasmith committed Jan 30, 2025
1 parent c3cbb93 commit 9cdd7fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vllm/engine/llm_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def __init__(
)

logger.info(
"Initializing an LLM engine (v%s) with config: %s, "
"Initializing a V0 LLM engine (v%s) with config: %s, "
"use_cached_outputs=%s, ",
VLLM_VERSION,
vllm_config,
Expand Down
2 changes: 1 addition & 1 deletion vllm/v1/engine/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __init__(
):
assert vllm_config.model_config.runner_type != "pooling"

logger.info("Initializing an LLM engine (v%s) with config: %s",
logger.info("Initializing a V1 LLM engine (v%s) with config: %s",
VLLM_VERSION, vllm_config)

# Setup Model.
Expand Down

0 comments on commit 9cdd7fb

Please sign in to comment.