Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
norm
vllm
Commits
2f3d36a8
Unverified
Commit
2f3d36a8
authored
Oct 30, 2023
by
Adam Brusselback
Committed by
GitHub
Oct 30, 2023
Browse files
Fix logging so we actually get info level entries in the log. (#1494)
parent
ac8d36f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
vllm/logger.py
vllm/logger.py
+5
-1
No files found.
vllm/logger.py
View file @
2f3d36a8
...
...
@@ -48,4 +48,8 @@ _setup_logger()
def
init_logger
(
name
:
str
):
return
logging
.
getLogger
(
name
)
# Use the same settings as above for root logger
logger
=
logging
.
getLogger
(
name
)
logger
.
setLevel
(
logging
.
DEBUG
)
logger
.
addHandler
(
_default_handler
)
return
logger
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