Files
sundynix-go/main.go
T
2025-04-25 12:58:31 +08:00

22 lines
369 B
Go

package main
import (
"go.uber.org/zap"
"sundynix-go/core"
"sundynix-go/global"
)
func main() {
//初始化viper
global.Viper = core.Viper()
//初始化zap
global.Logger = core.Zap()
//替换zap
zap.ReplaceGlobals(global.Logger)
global.Logger.Info("this is debug log")
global.Logger.Debug("this is debug log")
global.Logger.Error("this is error log")
}