refactor(log): redir utils.Log to logrus after init (#833)

This commit is contained in:
Ljcbaby
2025-07-25 13:38:45 +08:00
committed by GitHub
parent 358e4d851e
commit b273232f87

View File

@ -53,4 +53,5 @@ func Log() {
}
log.SetOutput(logrus.StandardLogger().Out)
utils.Log.Infof("init logrus...")
utils.Log = logrus.StandardLogger()
}