net.http: remove debug println statement from post_multipart_form (#25030)

This commit is contained in:
D4MI4NX 2025-08-03 09:04:49 +02:00 committed by GitHub
parent 809e617501
commit 51552c7b16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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(