mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-16 04:00:38 +03:00
Reduce spurious error/warn messages, if loglevel != debug
This commit is contained in:
parent
80b7311453
commit
8f02daf337
@ -195,7 +195,9 @@ func h(r chi.Router, path string, f handler) {
|
||||
return
|
||||
}
|
||||
if r.Context().Err() != nil {
|
||||
log.Warn("Request was interrupted", "path", path, r.Context().Err())
|
||||
if log.CurrentLevel() >= log.LevelDebug {
|
||||
log.Warn("Request was interrupted", "path", path, r.Context().Err())
|
||||
}
|
||||
return
|
||||
}
|
||||
if res != nil {
|
||||
|
@ -68,10 +68,13 @@ func (c *StreamController) Stream(w http.ResponseWriter, r *http.Request) (*resp
|
||||
if r.Method == "HEAD" {
|
||||
go func() { _, _ = io.Copy(io.Discard, stream) }()
|
||||
} else {
|
||||
if c, err := io.Copy(w, stream); err != nil {
|
||||
log.Error(ctx, "Error sending transcoded file", "id", id, err)
|
||||
} else {
|
||||
log.Trace(ctx, "Success sending transcode file", "id", id, "size", c)
|
||||
c, err := io.Copy(w, stream)
|
||||
if log.CurrentLevel() >= log.LevelDebug {
|
||||
if err != nil {
|
||||
log.Error(ctx, "Error sending transcoded file", "id", id, err)
|
||||
} else {
|
||||
log.Trace(ctx, "Success sending transcode file", "id", id, "size", c)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user