mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2026-07-08 19:07:13 +08:00
[Core] Don't force uppercase for VLLM_LOGGING_LEVEL (#15306)
Signed-off-by: Russell Bryant <rbryant@redhat.com>
This commit is contained in:
parent
761702fd19
commit
8abe69b499
@ -294,7 +294,7 @@ environment_variables: dict[str, Callable[[], Any]] = {
|
|||||||
|
|
||||||
# this is used for configuring the default logging level
|
# this is used for configuring the default logging level
|
||||||
"VLLM_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
|
# if set, VLLM_LOGGING_PREFIX will be prepended to all log messages
|
||||||
"VLLM_LOGGING_PREFIX":
|
"VLLM_LOGGING_PREFIX":
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user