Unverified Commit 8abe69b4 authored by Russell Bryant's avatar Russell Bryant Committed by GitHub
Browse files

[Core] Don't force uppercase for VLLM_LOGGING_LEVEL (#15306)


Signed-off-by: default avatarRussell Bryant <rbryant@redhat.com>
parent 761702fd
......@@ -294,7 +294,7 @@ environment_variables: dict[str, Callable[[], Any]] = {
# this is used for configuring the default logging level
"VLLM_LOGGING_LEVEL":
lambda: os.getenv("VLLM_LOGGING_LEVEL", "INFO"),
lambda: os.getenv("VLLM_LOGGING_LEVEL", "INFO").upper(),
# if set, VLLM_LOGGING_PREFIX will be prepended to all log messages
"VLLM_LOGGING_PREFIX":
......
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