2015-03-01 09:45:13 -08:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/labstack/bolt"
|
2015-03-12 15:46:02 -07:00
|
|
|
"github.com/labstack/gommon/color"
|
2015-03-01 09:45:13 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
func Logger() bolt.HandlerFunc {
|
|
|
|
return func(c *bolt.Context) {
|
|
|
|
start := time.Now()
|
|
|
|
c.Next()
|
|
|
|
end := time.Now()
|
2015-03-12 20:50:33 -07:00
|
|
|
col := color.Green
|
2015-03-01 09:45:13 -08:00
|
|
|
m := c.Request.Method
|
|
|
|
p := c.Request.URL.Path
|
|
|
|
s := c.Response.Status()
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case s >= 500:
|
2015-03-12 20:50:33 -07:00
|
|
|
col = color.Red
|
2015-03-01 09:45:13 -08:00
|
|
|
case s >= 400:
|
2015-03-12 20:50:33 -07:00
|
|
|
col = color.Yellow
|
2015-03-01 09:45:13 -08:00
|
|
|
case s >= 300:
|
2015-03-12 20:50:33 -07:00
|
|
|
col = color.Cyan
|
2015-03-01 09:45:13 -08:00
|
|
|
}
|
|
|
|
|
2015-03-12 20:50:33 -07:00
|
|
|
log.Printf("%s %s %s %s", m, p, col(s), end.Sub(start))
|
2015-03-01 09:45:13 -08:00
|
|
|
}
|
|
|
|
}
|