package
0.0.9
Repository: https://github.com/cc360428/helppackage.git
Documentation: pkg.go.dev

# README

logrus

日志使用

日志输出格式

logrus.Debug("Useful debugging information.")
logrus.Info("Something noteworthy happened!")
logrus.Warn("You should probably take a look at this.")
logrus.Error("Something failed but I'm not quitting.")
logrus.Fatal("Bye.")         //log之后会调用os.Exit(1)
logrus.Panic("I'm bailing.") //log之后会panic()

日志输出级别

级别参考

# Functions

No description provided by the author
级别.