Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DebugLogger ¶
type DebugLogger interface {
Debug(...interface{})
Debugf(string, ...interface{})
}
DebugLogger represents a logger with Debug* APIs.
type FatalLogger ¶
type FatalLogger interface {
Fatal(...interface{})
Fatalf(string, ...interface{})
}
FatalLogger represents a logger with Fatal* APIs.
type InfoLogger ¶
type InfoLogger interface {
Info(...interface{})
Infof(string, ...interface{})
}
InfoLogger represents a logger with Info* APIs.
type Logger ¶
type Logger interface {
InfoLogger
WarnLogger
DebugLogger
FatalLogger
}
Logger represents a full-featured logger.
type WarnLogger ¶
type WarnLogger interface {
Warn(...interface{})
Warnf(string, ...interface{})
}
WarnLogger represents a logger with Warn* APIs.
Click to show internal directories.
Click to hide internal directories.