I need the actual code changes (diff) to generate an accurate commit message.
This commit is contained in:
parent
783093f0fd
commit
a29f57d119
|
|
@ -9,7 +9,11 @@ from app.db.session import AsyncSessionLocal
|
|||
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__)
|
||||
|
||||
# 禁用 uvicorn access log 和 LiteLLM INFO 日志
|
||||
|
|
|
|||
Loading…
Reference in New Issue