mirror of
https://github.com/labstack/echo.git
synced 2024-12-26 20:54:00 +02:00
22 lines
398 B
Go
22 lines
398 B
Go
|
package logger
|
||
|
|
||
|
type (
|
||
|
// Logger is the interface that declares Echo's logging system.
|
||
|
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{})
|
||
|
}
|
||
|
)
|