1
0
mirror of https://github.com/labstack/echo.git synced 2025-05-23 22:40:27 +02:00
echo/middleware/logger.go
Vishal Rana 141b4302ae Created a website #29
Signed-off-by: Vishal Rana <vr@labstack.com>
2015-04-18 21:53:38 -07:00

36 lines
595 B
Go

package middleware
import (
"log"
"time"
"github.com/labstack/echo"
"github.com/labstack/gommon/color"
)
func Logger(h echo.HandlerFunc) echo.HandlerFunc {
return func(c *echo.Context) error {
start := time.Now()
if err := h(c); err != nil {
return err
}
end := time.Now()
col := color.Green
m := c.Request.Method
p := c.Request.URL.Path
n := c.Response.Status()
switch {
case n >= 500:
col = color.Red
case n >= 400:
col = color.Yellow
case n >= 300:
col = color.Cyan
}
log.Printf("%s %s %s %s", m, p, col(n), end.Sub(start))
return nil
}
}