From: Paul Sadauskas Date: Mon, 22 Jun 2009 20:22:59 +0000 (-0600) Subject: http plugin: Remove some debugging info X-Git-Tag: collectd-4.8.0~26^2~22 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=6fc85b952084c71e040bec17740b2811c5574f01;p=collectd.git http plugin: Remove some debugging info --- diff --git a/src/http.c b/src/http.c index 995368c9..f38079e1 100644 --- a/src/http.c +++ b/src/http.c @@ -307,10 +307,6 @@ static void http_init_buffer (void) /* {{{ */ static void http_send_buffer (char *buffer) /* {{{ */ { - printf("Sending: --------\n"); - printf(buffer); - printf("---------------\n"); - int status = 0; curl_easy_setopt (curl, CURLOPT_POSTFIELDS, buffer); status = curl_easy_perform (curl); @@ -376,10 +372,6 @@ static int http_write (const data_set_t *ds, const value_list_t *vl, /* {{{ */ metric_name, timestamp, value); send_buffer_fill += status; - printf(send_buffer); - printf("Fill: %i\n", send_buffer_fill); - printf("----\n"); - if ((sizeof (send_buffer) - send_buffer_fill) < 128) { http_flush_buffer();