From 80a9aebd0ea293147b770800991ea2f99db2e8d6 Mon Sep 17 00:00:00 2001 From: sentriz Date: Wed, 14 Feb 2024 17:29:24 +0000 Subject: [PATCH] update transcode log message --- server/ctrlsubsonic/handlers_raw.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/ctrlsubsonic/handlers_raw.go b/server/ctrlsubsonic/handlers_raw.go index b6bbecc..6d2ec72 100644 --- a/server/ctrlsubsonic/handlers_raw.go +++ b/server/ctrlsubsonic/handlers_raw.go @@ -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 }