mirror of
https://github.com/labstack/echo.git
synced 2025-03-29 21:56:53 +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{})
|
|
}
|
|
)
|