From 5b824eac0bcaa1f2b9fe07df38a3e1b939ad6fa6 Mon Sep 17 00:00:00 2001 From: yanweidong Date: Tue, 2 Dec 2025 00:11:37 +0800 Subject: [PATCH] fix info output --- conf/new.go | 1 + 1 file changed, 1 insertion(+) diff --git a/conf/new.go b/conf/new.go index 56324b2..a6b3451 100644 --- a/conf/new.go +++ b/conf/new.go @@ -37,6 +37,7 @@ func New(srvKey string, cfg any) { // 配置文件不存在则读取Workspace配置文件 if !utils.PathExists(cfp) { + printer.Info("[BSM - %s] Config File: %s Not Found, Read Workspace Public Config File...", srvKey, cfp) cfp = fmt.Sprintf("workspace_%s_%s.yaml", strings.ToLower(env.Runtime.Workspace), env.Runtime.Mode) cfp = filepath.Join(env.Runtime.Prefix, "etc", cfp) }