From 48275558990b5e485bf5c09b593f29565db686a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E7=A5=A5=E8=B6=85?= Date: Mon, 26 Sep 2022 11:00:58 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=AF=E5=8A=A8=E8=BF=87=E7=A8=8B=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=A4=9A=E4=B8=AA=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/nodes/api_node.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/internal/nodes/api_node.go b/internal/nodes/api_node.go index 41d161f2..a9380683 100644 --- a/internal/nodes/api_node.go +++ b/internal/nodes/api_node.go @@ -130,14 +130,16 @@ func (this *APINode) Start() { } // 数据库通知启动 + this.setProgress("DATABASE", "正在建立数据库模型") logs.Println("[API_NODE]notify ready ...") dbs.NotifyReady() // 设置时区 + this.setProgress("TIMEZONE", "正在设置时区") this.setupTimeZone() // 读取配置 - this.setProgress("DATABASE", "加载API配置") + this.setProgress("DATABASE", "正在加载API配置") logs.Println("[API_NODE]reading api config ...") config, err := configs.SharedAPIConfig() if err != nil {