passed/routes/logger.go

14 lines
230 B
Go
Raw Normal View History

2024-10-29 23:08:11 +00:00
package routes
import (
"log"
"net/http"
)
func Logger(handler http.Handler) http.HandlerFunc {
return func(res http.ResponseWriter, req *http.Request) {
log.Printf("%-80s", req.URL.Path)
handler.ServeHTTP(res, req)
}
}