server: fix wording in NewChannel debug message

This commit is contained in:
2026-05-24 00:36:14 +00:00
parent e89ca23a42
commit 43c1b09142
+1 -1
View File
@@ -68,7 +68,7 @@ func NewChannel(w http.ResponseWriter, r *http.Request) {
slog.Debug("channel: entering NewChannel handler")
err := r.ParseMultipartForm(64 << 10)
if err != nil {
slog.Error("user: failed to parse multipartform", "error", err)
slog.Error("channel: failed to parse multipartform", "error", err)
http.Error(w, "Unable to parse form", http.StatusBadRequest)
return
}