logrus如何配置打印文件行号

1. 引入logrus包

log "github.com/sirupsen/logrus"

2. 设置开启打印文件名及行号:log.SetReportCaller(true)

	log.SetFormatter(&log.TextFormatter{
		DisableColors: false,
		FullTimestamp: true,
	})
	log.SetOutput(os.Stdout)
	log.SetLevel(log.InfoLevel)
	log.SetReportCaller(true)

参考:

logrus中输出文件名、行号及函数名_logrus 自定义formatter中输出_ball球的博客-CSDN博客

你可能感兴趣的:(go)