Skip to content

Commit

Permalink
update transcode log message
Browse files Browse the repository at this point in the history
  • Loading branch information
sentriz committed Feb 14, 2024
1 parent 2949b4c commit 80a9aeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/ctrlsubsonic/handlers_raw.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ func (c *Controller) ServeStream(w http.ResponseWriter, r *http.Request) *spec.R
return spec.NewError(0, "couldn't find transcode preference: %v", err)
}
if pref == nil {
log.Printf("serving raw file, no user transcode preferences found for client %q", client)
log.Printf("serving raw file, no user transcode preferences found for user %q and client %q", user.Name, client)
http.ServeFile(w, r, file.AbsPath())
return nil
}
Expand Down

0 comments on commit 80a9aeb

Please sign in to comment.