From: Florian Forster Date: Mon, 3 May 2010 07:23:55 +0000 (+0200) Subject: rrdtool plugin: Degrade a less than helpful warning to a debug message. X-Git-Tag: collectd-4.10.1~14 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=79f132efd2504a52d30d5d885581e3ee4ee26790 rrdtool plugin: Degrade a less than helpful warning to a debug message. --- diff --git a/src/rrdtool.c b/src/rrdtool.c index 01fca30a..4655b96e 100644 --- a/src/rrdtool.c +++ b/src/rrdtool.c @@ -679,7 +679,7 @@ static int rrd_cache_insert (const char *filename, if (rc->last_value >= value_time) { pthread_mutex_unlock (&cache_lock); - WARNING ("rrdtool plugin: (rc->last_value = %u) >= (value_time = %u)", + DEBUG ("rrdtool plugin: (rc->last_value = %u) >= (value_time = %u)", (unsigned int) rc->last_value, (unsigned int) value_time); return (-1);