添加中文字体

This commit is contained in:
wzy-warehouse
2026-06-24 15:52:40 +08:00
parent 7163ca67f9
commit 1b08f2c4a2
8 changed files with 246 additions and 45 deletions
+3
View File
@@ -56,6 +56,9 @@ def create_app() -> FastAPI:
start = time.time()
response = await call_next(request)
elapsed = time.time() - start
# 静默健康检查探针
if request.url.path == "/" and request.method == "GET":
return response
logger.info(f"{request.method} {request.url.path} -> {response.status_code} ({elapsed:.3f}s)")
return response