summaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorRadu Hociung <radu.git@ohmi.org>2022-12-26 00:39:52 -0500
committerDaniel Stenberg <daniel@haxx.se>2022-12-26 09:29:36 +0100
commit73477d5a4d54cc7cb63659eface5796b63e4ebed (patch)
treed4f68f51c255cdaba6357e37fe1115f799375410 /lib/http.c
parenta5cf4a87cf8647b129f16d34bfa680a045b885cf (diff)
downloadcurl-73477d5a4d54cc7cb63659eface5796b63e4ebed.tar.gz
http: remove the trace message "Mark bundle... multiuse"
The message "Mark bundle as not supporting multiuse" was added at commit 29364d93 when an http/2-related bug was fixed, and it appears to be a leftover trace message. This message should be removed because: * it conveys no information to the user * it is enabled in the default build (--enable-verbose) * it reads like a warning/unexpected condition * it is equivalent to "Detected http proto < 2", which is not a useful message. * it is a time-wasting red-herring for anyone who encounters it for the first time while investigating some other, real problem. This commit removes the trace message "Mark bundle as not supporting multiuse" Closes #10159
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index 1b7502280..275c0cb21 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -4290,7 +4290,6 @@ CURLcode Curl_http_readwrite_headers(struct Curl_easy *data,
}
if(conn->httpversion < 20) {
conn->bundle->multiuse = BUNDLE_NO_MULTIUSE;
- infof(data, "Mark bundle as not supporting multiuse");
}
}
else if(!nc) {