1 Star 0 Fork 0

rouchieChen/omg

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
log.go 569 Bytes
一键复制 编辑 原始数据 按行查看 历史
rouchieChen 提交于 2023-02-22 11:43 . 改变日志格式
package omg
import (
"fmt"
"os"
"path"
"runtime"
"github.com/sirupsen/logrus"
)
func init() {
logrus.SetOutput(os.Stdout)
logrus.SetFormatter(&logrus.TextFormatter{
DisableColors: false,
TimestampFormat: "2006-01-02 15:04:05.000",
CallerPrettyfier: func(frame *runtime.Frame) (function string, file string) {
file = fmt.Sprintf("[%v:%v %v]|>|>|>", path.Base(frame.File), frame.Line, frame.Function)
return "", file
},
FullTimestamp: true,
})
logrus.SetReportCaller(true)
}
func LogSetLevel(level logrus.Level) {
logrus.SetLevel(level)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rouchie/omg.git
git@gitee.com:rouchie/omg.git
rouchie
omg
omg
master

搜索帮助