aboutsummaryrefslogtreecommitdiff
path: root/lib/pipeline.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/pipeline.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/pipeline.c')
-rw-r--r--lib/pipeline.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/pipeline.c b/lib/pipeline.c
index 61b8c9697..dfa3c7af1 100644
--- a/lib/pipeline.c
+++ b/lib/pipeline.c
@@ -103,18 +103,11 @@ CURLcode Curl_add_handle_to_pipeline(struct SessionHandle *handle,
pipeline = conn->send_pipe;
- infof(conn->data, "Adding handle: conn: %p\n", (void *)conn);
- infof(conn->data, "Adding handle: send: %d\n", conn->send_pipe->size);
- infof(conn->data, "Adding handle: recv: %d\n", conn->recv_pipe->size);
rc = Curl_addHandleToPipeline(handle, pipeline);
if(pipeline == conn->send_pipe && sendhead != conn->send_pipe->head) {
/* this is a new one as head, expire it */
conn->writechannel_inuse = FALSE; /* not in use yet */
-#ifdef DEBUGBUILD
- infof(conn->data, "%p is at send pipe head!\n",
- (void *)conn->send_pipe->head->ptr);
-#endif
Curl_expire(conn->send_pipe->head->ptr, 1);
}