diff --git a/server/api/channel.go b/server/api/channel.go index dccae62..f10d2a6 100644 --- a/server/api/channel.go +++ b/server/api/channel.go @@ -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 }