From 51552c7b161df2780f0080f0b163905cea864692 Mon Sep 17 00:00:00 2001 From: D4MI4NX <105593627+D4MI4NX@users.noreply.github.com> Date: Sun, 3 Aug 2025 09:04:49 +0200 Subject: [PATCH] net.http: remove debug println statement from post_multipart_form (#25030) --- vlib/net/http/http.v | 1 - 1 file changed, 1 deletion(-) diff --git a/vlib/net/http/http.v b/vlib/net/http/http.v index 213c14f489..984b78bd0b 100644 --- a/vlib/net/http/http.v +++ b/vlib/net/http/http.v @@ -117,7 +117,6 @@ pub mut: // request to the given `url`. pub fn post_multipart_form(url string, conf PostMultipartFormConfig) !Response { body, boundary := multipart_form_body(conf.form, conf.files) - println(conf.header) mut header := conf.header header.set(.content_type, 'multipart/form-data; boundary="${boundary}"') return fetch(