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>
This commit is contained in:
HappyAmazonian 2025-11-28 05:29:05 -08:00 committed by GitHub
parent 1168768a2d
commit f8151b66fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 5 deletions

View File

@ -49,4 +49,4 @@ cbor2 # Required for cross-language serialization of hashable objects
setproctitle # Used to set process names for better debugging and monitoring
openai-harmony >= 0.0.3 # Required for gpt-oss
anthropic == 0.71.0
model-hosting-container-standards < 1.0.0
model-hosting-container-standards >= 0.1.9, < 1.0.0

View File

@ -5,7 +5,6 @@ import hashlib
import importlib
import inspect
import json
import logging
import multiprocessing
import multiprocessing.forkserver as forkserver
import os
@ -2099,9 +2098,6 @@ async def run_server(args, **uvicorn_kwargs) -> None:
# Add process-specific prefix to stdout and stderr.
decorate_logs("APIServer")
# Suppress verbose logs from model_hosting_container_standards
logging.getLogger("model_hosting_container_standards").setLevel(logging.ERROR)
listen_address, sock = setup_server(args)
await run_server_worker(listen_address, sock, args, **uvicorn_kwargs)