Documentation ¶
Index ¶
- Variables
- func Critical(v ...interface{}) error
- func Criticalf(format string, params ...interface{}) error
- func Debug(v ...interface{})
- func Debugf(format string, params ...interface{})
- func Error(v ...interface{}) error
- func Errorf(format string, params ...interface{}) error
- func Info(v ...interface{})
- func Infof(format string, params ...interface{})
- func Reload(fileName string) error
- func Trace(v ...interface{})
- func Tracef(format string, params ...interface{})
- func Warn(v ...interface{}) error
- func Warnf(format string, params ...interface{}) error
- type ILogger
Constants ¶
This section is empty.
Variables ¶
View Source
var (
Logger seelog.LoggerInterface
)
Functions ¶
Types ¶
type ILogger ¶
type ILogger interface { Tracef(format string, params ...interface{}) Debugf(format string, params ...interface{}) Infof(format string, params ...interface{}) Warnf(format string, params ...interface{}) error Errorf(format string, params ...interface{}) error Criticalf(format string, params ...interface{}) error Trace(v ...interface{}) Debug(v ...interface{}) Info(v ...interface{}) Warn(v ...interface{}) error Error(v ...interface{}) error Critical(v ...interface{}) error Close() Flush() Closed() bool }
Click to show internal directories.
Click to hide internal directories.