From 560f2f54236dd1fb38d8d7dd90bd4ea1864514ee Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sun, 7 May 2017 22:56:47 +0200 Subject: [PATCH] =?UTF-8?q?path:=20don=E2=80=99t=20be=20too=20verbose?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/path.c b/lib/path.c index 4bfa2ddd2..f4a39ce07 100644 --- a/lib/path.c +++ b/lib/path.c @@ -72,7 +72,7 @@ static void path_read(struct path *p) /* Run preprocessing hooks for vector of samples */ enqueue = hook_read_list(&p->hooks, smps, recv); if (enqueue != recv) { - info("Hooks skipped %u out of %u samples for path %s", recv - enqueue, recv, path_name(p)); + debug(LOG_PATH | 10, "Hooks skipped %u out of %u samples for path %s", recv - enqueue, recv, path_name(p)); if (p->stats) stats_update(p->stats->delta, STATS_SKIPPED, recv - enqueue);