Suppress asyncio logging noise in LoRA routes

This commit is contained in:
Will Miao
2025-02-03 22:50:58 +08:00
parent a3af41e737
commit c9390c9d32

View File

@@ -7,6 +7,7 @@ from ..services.lora_scanner import LoraScanner
from ..config import config
logger = logging.getLogger(__name__)
logging.getLogger('asyncio').setLevel(logging.CRITICAL)
class LoraRoutes:
"""Route handlers for LoRA management endpoints"""