This repository has been archived on 2022-08-26. You can view files and clone it, but cannot push or open issues/pull-requests.
gosocial/pkg/middleware/logging.go

17 lines
332 B
Go

package middleware
import (
"fmt"
"net/http"
"time"
)
// Logging middleware.
func Logging(handler http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
nw := time.Now()
handler.ServeHTTP(w, r)
fmt.Printf("%s %s %s %s\n", r.RemoteAddr, r.Method, r.URL, time.Since(nw))
})
}