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

Signed-off-by: Russell Bryant <rbryant@redhat.com>
This commit is contained in:
Russell Bryant 2025-03-24 11:27:30 -04:00 committed by GitHub
parent 761702fd19
commit 8abe69b499
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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":