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
e1b5a821
Unverified
Commit
e1b5a821
authored
Nov 08, 2024
by
Florian Zimmermeister
Committed by
GitHub
Nov 08, 2024
Browse files
Rename vllm.logging to vllm.logging_utils (#10134)
parent
87713c60
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
3 deletions
+8
-3
pyproject.toml
pyproject.toml
+1
-1
tests/test_logger.py
tests/test_logger.py
+1
-1
vllm/logger.py
vllm/logger.py
+1
-1
vllm/logging_utils/__init__.py
vllm/logging_utils/__init__.py
+5
-0
vllm/logging_utils/formatter.py
vllm/logging_utils/formatter.py
+0
-0
No files found.
pyproject.toml
View file @
e1b5a821
...
...
@@ -68,7 +68,7 @@ files = [
"vllm/entrypoints"
,
"vllm/core"
,
"vllm/inputs"
,
"vllm/logging"
,
"vllm/logging
_utils
"
,
"vllm/multimodal"
,
"vllm/platforms"
,
"vllm/transformers_utils"
,
...
...
tests/test_logger.py
View file @
e1b5a821
...
...
@@ -13,7 +13,7 @@ import pytest
from
vllm.logger
import
(
_DATE_FORMAT
,
_FORMAT
,
_configure_vllm_root_logger
,
enable_trace_function_call
,
init_logger
)
from
vllm.logging
import
NewLineFormatter
from
vllm.logging
_utils
import
NewLineFormatter
def
f1
(
x
):
...
...
vllm/logger.py
View file @
e1b5a821
...
...
@@ -24,7 +24,7 @@ _DATE_FORMAT = "%m-%d %H:%M:%S"
DEFAULT_LOGGING_CONFIG
=
{
"formatters"
:
{
"vllm"
:
{
"class"
:
"vllm.logging.NewLineFormatter"
,
"class"
:
"vllm.logging
_utils
.NewLineFormatter"
,
"datefmt"
:
_DATE_FORMAT
,
"format"
:
_FORMAT
,
},
...
...
vllm/logging/__init__.py
→
vllm/logging
_utils
/__init__.py
View file @
e1b5a821
from
vllm.logging.formatter
import
NewLineFormatter
from
vllm.logging
_utils
.formatter
import
NewLineFormatter
__all__
=
[
"NewLineFormatter"
,
...
...
vllm/logging/formatter.py
→
vllm/logging
_utils
/formatter.py
View file @
e1b5a821
File moved
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