From: Florian Forster Date: Sun, 24 Feb 2008 14:43:07 +0000 (+0100) Subject: src/types_list.c: Removed annoying debug messages. X-Git-Tag: collectd-4.4.0~90 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=df4196722445570bc39b25b422accd4e24aae9dc;p=collectd.git src/types_list.c: Removed annoying debug messages. --- diff --git a/src/types_list.c b/src/types_list.c index ff842628..3be792d5 100644 --- a/src/types_list.c +++ b/src/types_list.c @@ -85,9 +85,6 @@ static int parse_ds (data_source_t *dsrc, char *buf, size_t buf_len) else dsrc->max = atof (fields[3]); - DEBUG ("parse_ds: dsrc = {%s, %i, %lf, %lf};", - dsrc->name, dsrc->type, dsrc->min, dsrc->max); - return (0); } /* int parse_ds */ @@ -125,9 +122,6 @@ static void parse_line (char *buf) return; } - DEBUG ("parse_line: ds = {%s, %i, %p};", - ds->type, ds->ds_num, (void *) ds->ds); - plugin_register_data_set (ds); sfree (ds->ds);