forked from labstack/echo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logger.go
41 lines (36 loc) · 772 Bytes
/
logger.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package middleware
import (
"log"
"time"
"github.com/labstack/echo"
"github.com/labstack/gommon/color"
)
func Logger() echo.MiddlewareFunc {
return func(h echo.HandlerFunc) echo.HandlerFunc {
return func(c *echo.Context) *echo.HTTPError {
start := time.Now()
if he := h(c); he != nil {
c.Error(he)
}
end := time.Now()
method := c.Request.Method
path := c.Request.URL.Path
if path == "" {
path = "/"
}
size := c.Response.Size()
n := c.Response.Status()
code := color.Green(n)
switch {
case n >= 500:
code = color.Red(n)
case n >= 400:
code = color.Yellow(n)
case n >= 300:
code = color.Cyan(n)
}
log.Printf("%s %s %s %s %d", method, path, code, end.Sub(start), size)
return nil
}
}
}