all repos — website @ af7b5d9478df3da1a46e14e39fafb9fe475b0c0f

My website

use zap for logging http requests as well

Alan Pearce
commit

af7b5d9478df3da1a46e14e39fafb9fe475b0c0f

parent

09ee2de72936ea0b0edc5d3360ce1c72803a817b

1 file changed, 9 insertions(+), 12 deletions(-)

changed files
M internal/server/logging.gointernal/server/logging.go
@@ -1,9 +1,8 @@
package server import ( - "fmt" - "io" "net/http" + "website/internal/log" ) type loggingResponseWriter struct {
@@ -25,7 +24,6 @@ }
type wrappedHandlerOptions struct { defaultHostname string - logger io.Writer } func wrapHandlerWithLogging(wrappedHandler http.Handler, opts wrappedHandlerOptions) http.Handler {
@@ -41,15 +39,14 @@ }
lw := NewLoggingResponseWriter(w) wrappedHandler.ServeHTTP(lw, r) statusCode := lw.statusCode - fmt.Fprintf( - opts.logger, - "%s %s %d %s %s %s\n", - scheme, - r.Method, - statusCode, - host, - r.URL.Path, - lw.Header().Get("Location"), + log.Info( + "http request", + "scheme", scheme, + "method", r.Method, + "status", statusCode, + "host", host, + "path", r.URL.Path, + "location", lw.Header().Get("Location"), ) }) }