Documentation ¶
Index ¶
- Variables
- func Debug(args ...interface{})
- func Debugf(format string, args ...interface{})
- func Error(args ...interface{})
- func Errorf(format string, args ...interface{})
- func Fatal(args ...interface{})
- func Fatalf(format string, args ...interface{})
- func GetLevel() logrus.Level
- func Info(args ...interface{})
- func Infof(format string, args ...interface{})
- func LogMessage(level logrus.Level, args ...interface{})
- func Logf(level logrus.Level, format string, args ...interface{})
- func Panic(args ...interface{})
- func Panicf(format string, args ...interface{})
- func ParseLevel(level string) (logrus.Level, error)
- func Print(args ...interface{})
- func Printf(format string, args ...interface{})
- func Println(args ...interface{})
- func SetLevel(level logrus.Level)
- func SetOutput(output *os.File)
- func SetReportCaller(reportCaller bool)
- func SetStdoutEnabled(enabled bool)
- func Trace(args ...interface{})
- func Tracef(format string, args ...interface{})
- func Warn(args ...interface{})
- func Warnf(format string, args ...interface{})
- func WithError(err error) *logrus.Entry
- func WithField(key string, value interface{}) *logrus.Entry
- func WithFields(fields logrus.Fields) *logrus.Entry
- type DefaultLogger
Constants ¶
This section is empty.
Variables ¶
View Source
var Log *logrus.Logger
Log 是全局日志实例
Functions ¶
func Debugf ¶
func Debugf(format string, args ...interface{})
Debugf 记录格式化的调试级别日志 参数:
- format: 格式化字符串
- args: 格式化参数
func Errorf ¶
func Errorf(format string, args ...interface{})
Errorf 记录格式化的错误级别日志 参数:
- format: 格式化字符串
- args: 格式化参数
func Fatalf ¶
func Fatalf(format string, args ...interface{})
Fatalf 记录格式化的致命级别日志 参数:
- format: 格式化字符串
- args: 格式化参数
func Infof ¶
func Infof(format string, args ...interface{})
Infof 记录格式化的信息级别日志 参数:
- format: 格式化字符串
- args: 格式化参数
func Panicf ¶
func Panicf(format string, args ...interface{})
Panicf 记录格式化的 panic 级别日志 参数:
- format: 格式化字符串
- args: 格式化参数
func Printf ¶
func Printf(format string, args ...interface{})
Printf 记录格式化的信息级别日志 参数:
- format: 格式化字符串
- args: 格式化参数
func Warnf ¶
func Warnf(format string, args ...interface{})
Warnf 记录格式化的警告级别日志 参数:
- format: 格式化字符串
- args: 格式化参数
Types ¶
type DefaultLogger ¶
DefaultLogger 是默认的日志记录器实现
Click to show internal directories.
Click to hide internal directories.