Skip to content

Commit 8abe69b

Browse files
authored
[Core] Don't force uppercase for VLLM_LOGGING_LEVEL (#15306)
Signed-off-by: Russell Bryant <[email protected]>
1 parent 761702f commit 8abe69b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm/envs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ def maybe_convert_int(value: Optional[str]) -> Optional[int]:
294294

295295
# this is used for configuring the default logging level
296296
"VLLM_LOGGING_LEVEL":
297-
lambda: os.getenv("VLLM_LOGGING_LEVEL", "INFO"),
297+
lambda: os.getenv("VLLM_LOGGING_LEVEL", "INFO").upper(),
298298

299299
# if set, VLLM_LOGGING_PREFIX will be prepended to all log messages
300300
"VLLM_LOGGING_PREFIX":

0 commit comments

Comments
 (0)