From 0171b227b670c7ca338b26bfaff303fd7cf2d023 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Wed, 27 May 2009 11:42:47 +0200 Subject: [PATCH] rrdtool plugin: If `flush' cannot find the requested file, issue an `INFO'. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit ... and not a `WARNING' - this may happen under perfectly fine conditions. (I. e. file exists but isn't updated anymore.) --- src/rrdtool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rrdtool.c b/src/rrdtool.c index a205ef2c..ef1b25cd 100644 --- a/src/rrdtool.c +++ b/src/rrdtool.c @@ -599,7 +599,7 @@ static int rrd_cache_flush_identifier (int timeout, const char *identifier) status = c_avl_get (cache, key, (void *) &rc); if (status != 0) { - WARNING ("rrdtool plugin: rrd_cache_flush_identifier: " + INFO ("rrdtool plugin: rrd_cache_flush_identifier: " "c_avl_get (%s) failed. Does that file really exist?", key); return (status); -- 2.11.0