From 40885aedeb61f4a84d3e0acc7eeef256a6932aaf Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Fri, 6 Apr 2012 01:18:23 +0200 Subject: [PATCH] btr_remove_node(): Loglevel adjustments. These two log messages got a bit too noisy. Degrade loglevel to info. --- buffer_tree.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buffer_tree.c b/buffer_tree.c index 5b4ce19e..08892b4b 100644 --- a/buffer_tree.c +++ b/buffer_tree.c @@ -761,7 +761,7 @@ void btr_remove_node(struct btr_node *btrn) if (!btrn) return; - PARA_NOTICE_LOG("removing btr node %s from buffer tree\n", btrn->name); + PARA_INFO_LOG("removing btr node %s from buffer tree\n", btrn->name); FOR_EACH_CHILD(ch, btrn) ch->parent = NULL; btr_drain(btrn); @@ -878,7 +878,7 @@ int btr_exec_up(struct btr_node *btrn, const char *command, char **value_result) if (ret < 0) return ret; if (value_result && *value_result) - PARA_NOTICE_LOG("%s(%s): %s\n", command, parent->name, + PARA_INFO_LOG("%s(%s): %s\n", command, parent->name, *value_result); return 1; } -- 2.39.2