Skip to content

Commit 51552c7

Browse files
authored
net.http: remove debug println statement from post_multipart_form (#25030)
1 parent 809e617 commit 51552c7

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

vlib/net/http/http.v

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ pub mut:
117117
// request to the given `url`.
118118
pub fn post_multipart_form(url string, conf PostMultipartFormConfig) !Response {
119119
body, boundary := multipart_form_body(conf.form, conf.files)
120-
println(conf.header)
121120
mut header := conf.header
122121
header.set(.content_type, 'multipart/form-data; boundary="${boundary}"')
123122
return fetch(

0 commit comments

Comments
 (0)