Skip to content

Commit f8151b6

Browse files
Revert "Supress verbose logs from model_hosting_container_standards (… (#29335)
Signed-off-by: Shen Teng <sheteng@amazon.com> Co-authored-by: Cyrus Leung <tlleungac@connect.ust.hk>
1 parent 1168768 commit f8151b6

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

requirements/common.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ cbor2 # Required for cross-language serialization of hashable objects
4949
setproctitle # Used to set process names for better debugging and monitoring
5050
openai-harmony >= 0.0.3 # Required for gpt-oss
5151
anthropic == 0.71.0
52-
model-hosting-container-standards < 1.0.0
52+
model-hosting-container-standards >= 0.1.9, < 1.0.0

vllm/entrypoints/openai/api_server.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import importlib
66
import inspect
77
import json
8-
import logging
98
import multiprocessing
109
import multiprocessing.forkserver as forkserver
1110
import os
@@ -2099,9 +2098,6 @@ async def run_server(args, **uvicorn_kwargs) -> None:
20992098
# Add process-specific prefix to stdout and stderr.
21002099
decorate_logs("APIServer")
21012100

2102-
# Suppress verbose logs from model_hosting_container_standards
2103-
logging.getLogger("model_hosting_container_standards").setLevel(logging.ERROR)
2104-
21052101
listen_address, sock = setup_server(args)
21062102
await run_server_worker(listen_address, sock, args, **uvicorn_kwargs)
21072103

0 commit comments

Comments
 (0)