aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2014-01-08 23:19:57 +0100
committerDaniel Stenberg <daniel@haxx.se>2014-01-08 23:19:57 +0100
commit5b2342d3772ab5b06cf7c9575300e378852710bf (patch)
treec49dc42c4fd4c6f87f59ae6864617d2e4ea52639 /lib/url.c
parent31075a8897d3d3924e41757bfb60502fb6c224fe (diff)
info: remove debug output
Removed some of the infof() calls that were added with the recent pipeline improvements but they're not useful to the vast majority of readers and the pipelining seems to fundamentaly work - the debugging outputs can easily be added there if debugging these functions is needed again.
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index 3f85502eb..665133fa0 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -2683,7 +2683,6 @@ CURLcode Curl_addHandleToPipeline(struct SessionHandle *data,
{
if(!Curl_llist_insert_next(pipeline, pipeline->tail, data))
return CURLE_OUT_OF_MEMORY;
- infof(data, "Curl_addHandleToPipeline: length: %d\n", pipeline->size);
return CURLE_OK;
}