2 回答
TA贡献1805条经验 获得超9个赞
我不得不删除/go/pkg/mod/github.com/...
解决问题的路径中的模块。显然在创建模块或最初从 github 中提取代码时出了点问题。
之后我go get
再次使用我的 logrus lib,它按预期工作。
TA贡献1854条经验 获得超8个赞
我认为 logrus 模块很好,您只是缺少“log.WithFields”定义。
main.go 文件:
//Source : https://github.com/sirupsen/logrus
//logrus version : require github.com/sirupsen/logrus v.1.2.0
//go version go1.11.2 linux/amd64
package main
import (
//Go package
"os"
"fmt"
log "github.com/sirupsen/logrus"
)
//Checking if the logout file exist
//Just to show the Fatal tag.
func Exists(name string) bool {
_, err := os.Stat(name)
return !os.IsNotExist(err)
}
func main() {
fmt.Println("I'am the main here ... all begin ...")
log.WithFields(log.Fields{"main": "main process",}).Info("Initialization.")
log.WithFields(log.Fields{"main": "...some codes....",}).Warn("Nothting here yet.")
log.WithFields(log.Fields{"main":"main process",}).Info("It's done. Thanks.")
//The check here (it's just for demo) so you can see the others tags
if Exists("paht/to/mylogoutfile") == false {
log.WithFields(log.Fields{"main": "Checking logoutputfile path.",}).Fatal("Mising the Logout file.")
}
//fmt.Println("This is the end Thankyou for using this. :) ")
}
go.mod 文件:
module logrustest
require github.com/sirupsen/logrus v1.2.0 // indirect
输出 :
- 2 回答
- 0 关注
- 118 浏览
添加回答
举报