Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
8abe69b4
Unverified
Commit
8abe69b4
authored
Mar 24, 2025
by
Russell Bryant
Committed by
GitHub
Mar 24, 2025
Browse files
[Core] Don't force uppercase for VLLM_LOGGING_LEVEL (#15306)
Signed-off-by:
Russell Bryant
<
rbryant@redhat.com
>
parent
761702fd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vllm/envs.py
vllm/envs.py
+1
-1
No files found.
vllm/envs.py
View file @
8abe69b4
...
@@ -294,7 +294,7 @@ environment_variables: dict[str, Callable[[], Any]] = {
...
@@ -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"
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment