Add request logging

main
Jan Dittberner 2 years ago
parent 4ce321dc36
commit c0a73494c3

@ -31,3 +31,11 @@ func secureHeaders(next http.Handler) http.Handler {
next.ServeHTTP(w, r)
})
}
func (app *application) logRequest(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
app.infoLog.Printf("%s - %s %s %s", r.RemoteAddr, r.Proto, r.Method, r.URL.RequestURI())
next.ServeHTTP(w, r)
})
}

@ -44,5 +44,5 @@ func (app *application) routes() http.Handler {
mux.HandleFunc("/", app.home)
mux.HandleFunc("/motions/", app.motionList)
return secureHeaders(mux)
return app.logRequest(secureHeaders(mux))
}

Loading…
Cancel
Save