logger func

This commit is contained in:
PawelJa 2018-11-24 20:48:07 +01:00
parent 200e321d0c
commit 7b6e58685c

23
logger/logger.go Normal file
View File

@ -0,0 +1,23 @@
package logger
import (
"log"
"net/http"
"time"
)
func Logger(inner http.Handler, name string) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
start := time.Now()
inner.ServeHTTP(w, r)
log.Printf(
"%s\t%s\t%s\t%s",
r.Method,
r.RequestURI,
name,
time.Since(start),
)
})
}