diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-07-05 12:07:29 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-07-05 12:07:29 +0200 |
commit | 8dff852753a1c4a708fd87e3cbb0f4844803aa95 (patch) | |
tree | c589e6b4722c7bb5ff5c648e350232419c58b456 /pkg | |
parent | 1b1460c8d4fa358433c51fd5293fd1c79f32aeff (diff) | |
download | cerrado-8dff852753a1c4a708fd87e3cbb0f4844803aa95.tar.gz cerrado-8dff852753a1c4a708fd87e3cbb0f4844803aa95.tar.bz2 cerrado-8dff852753a1c4a708fd87e3cbb0f4844803aa95.zip |
feat: Add user-agent to logsv0.0.10
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/ext/log.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/ext/log.go b/pkg/ext/log.go index 2439f19..8e68134 100644 --- a/pkg/ext/log.go +++ b/pkg/ext/log.go @@ -45,12 +45,14 @@ func Log(next http.HandlerFunc) http.HandlerFunc { s := wrap(w) next(s, r) encoding := s.Header().Get("Content-Encoding") + userAgent := r.Header.Get("User-Agent") slog.Info( "HTTP request", "method", r.Method, "code", s.StatusCode(), "path", r.URL, "encoding", encoding, + "user-agent", userAgent, "elapsed", time.Since(t), "body-size", s.size, ) |