日志打印修正

This commit is contained in:
kercylan98 2023-05-26 18:54:26 +08:00
parent 3d60ac6485
commit 5f80ee839a
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ func Load() {
return err
}
if err = json.Unmarshal(bytes, &config); err == nil {
log.Error("Config", zap.String("Name", filename), zap.Bool("LoadSuccess", true))
log.Info("Config", zap.String("Name", filename), zap.Bool("LoadSuccess", true))
}
return err
})