mirror of
https://github.com/labstack/echo.git
synced 2024-12-24 20:14:31 +02:00
94e5936287
Signed-off-by: Vishal Rana <vishal.rana@verizon.com>
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{})
|
|
}
|
|
)
|