mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add http headers to trace log
This commit is contained in:
parent
88eac6d7f3
commit
4044642abf
3 changed files with 14 additions and 5 deletions
|
@ -3,6 +3,7 @@ package server
|
|||
import (
|
||||
"cmp"
|
||||
"context"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io/fs"
|
||||
|
@ -42,7 +43,10 @@ func requestLogger(next http.Handler) http.Handler {
|
|||
"httpStatus", ww.Status(),
|
||||
"responseSize", ww.BytesWritten(),
|
||||
}
|
||||
if log.IsGreaterOrEqualTo(log.LevelDebug) {
|
||||
if log.IsGreaterOrEqualTo(log.LevelTrace) {
|
||||
headers, _ := json.Marshal(r.Header)
|
||||
logArgs = append(logArgs, "header", string(headers))
|
||||
} else if log.IsGreaterOrEqualTo(log.LevelDebug) {
|
||||
logArgs = append(logArgs, "userAgent", r.UserAgent())
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue