I need the actual code changes (diff) to generate an accurate commit message.

This commit is contained in:
vinland100 2026-01-04 17:16:44 +08:00
parent 783093f0fd
commit a29f57d119
1 changed files with 5 additions and 1 deletions

View File

@ -9,7 +9,11 @@ from app.db.session import AsyncSessionLocal
from app.db.init_db import init_db from app.db.init_db import init_db
# 配置日志 # 配置日志
logging.basicConfig(level=logging.INFO) logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
datefmt='%Y-%m-%d %H:%M:%S'
)
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
# 禁用 uvicorn access log 和 LiteLLM INFO 日志 # 禁用 uvicorn access log 和 LiteLLM INFO 日志