Documentation ¶
Index ¶
- func Colorable(w io.Writer) bool
- type Base
- func (b *Base) Debug(...interface{})
- func (b *Base) Debugf(string, ...interface{})
- func (b *Base) Error(...interface{})
- func (b *Base) Errorf(string, ...interface{})
- func (b *Base) Fatal(...interface{})
- func (b *Base) Fatalf(string, ...interface{})
- func (b *Base) Info(...interface{})
- func (b *Base) Infof(string, ...interface{})
- func (b *Base) SetLevel(string)
- func (b *Base) Warn(...interface{})
- func (b *Base) Warnf(string, ...interface{})
- type LevelSetter
- type Logger
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type LevelSetter ¶
type LevelSetter interface {
SetLevel(string)
}
type Logger ¶
type Logger interface { Debug(...interface{}) Debugf(string, ...interface{}) Info(...interface{}) Infof(string, ...interface{}) Warn(...interface{}) Warnf(string, ...interface{}) Error(...interface{}) Errorf(string, ...interface{}) Fatal(...interface{}) Fatalf(string, ...interface{}) }
Logger is the interface that declares Echo's logging system.
Click to show internal directories.
Click to hide internal directories.