Documentation ¶
Index ¶
- type Logger
- type LoggerCfg
- type StdLogger
- func (l *StdLogger) Debug(msg string, fields ...interface{})
- func (l *StdLogger) Error(msg string, fields ...interface{})
- func (l *StdLogger) Fatal(msg string, fields ...interface{})
- func (l *StdLogger) Info(msg string, fields ...interface{})
- func (l *StdLogger) Panic(msg string, fields ...interface{})
- func (l *StdLogger) Warning(msg string, fields ...interface{})
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Logger ¶
type Logger interface { Debug(msg string, fields ...interface{}) Info(msg string, fields ...interface{}) Error(msg string, fields ...interface{}) Fatal(msg string, fields ...interface{}) Panic(msg string, fields ...interface{}) }
Logger is the wrapper
type StdLogger ¶
type StdLogger struct { Logger // contains filtered or unexported fields }
StdLogger is struct
Click to show internal directories.
Click to hide internal directories.