gin/logger.go

21 lines
283 B
Go
Raw Normal View History

2014-06-18 03:42:34 +04:00
package gin
import (
"log"
"time"
)
func Logger() HandlerFunc {
return func(c *Context) {
// Start timer
t := time.Now()
// Process request
c.Next()
// Calculate resolution time
log.Printf("[%d] %s in %v", c.Writer.Status(), c.Req.RequestURI, time.Since(t))
}
}