From 05b1bdaa9cc505f152b85f93579691b37907933d Mon Sep 17 00:00:00 2001 From: Venkatesh Somyajulu Date: Wed, 17 Oct 2012 14:44:09 +0530 Subject: cluster/afr Changed the message's log level from Error to Debug Change-Id: I64ca577839fc25952025651873ab60a2fcc3702c BUG: 859411 Signed-off-by: Venkatesh Somyajulu Reviewed-on: https://code.engineering.redhat.com/gerrit/1984 Reviewed-by: Vijay Bellur Tested-by: Vijay Bellur --- xlators/cluster/afr/src/afr-self-heald.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'xlators') diff --git a/xlators/cluster/afr/src/afr-self-heald.c b/xlators/cluster/afr/src/afr-self-heald.c index 14e81a5384a..d5773040770 100644 --- a/xlators/cluster/afr/src/afr-self-heald.c +++ b/xlators/cluster/afr/src/afr-self-heald.c @@ -417,11 +417,11 @@ _crawl_proceed (xlator_t *this, int child, int crawl_flags, char **reason) shd = &priv->shd; if (!shd->enabled) { msg = "Self-heal daemon is not enabled"; - gf_log (this->name, GF_LOG_ERROR, "%s", msg); + gf_log (this->name, GF_LOG_DEBUG, "%s", msg); goto out; } if (!priv->child_up[child]) { - gf_log (this->name, GF_LOG_ERROR, "Stopping crawl for %s , " + gf_log (this->name, GF_LOG_DEBUG, "Stopping crawl for %s , " "subvol went down", priv->children[child]->name); msg = "Brick is Not connected"; goto out; @@ -430,7 +430,7 @@ _crawl_proceed (xlator_t *this, int child, int crawl_flags, char **reason) if (crawl_flags & STOP_CRAWL_ON_SINGLE_SUBVOL) { if (afr_up_children_count (priv->child_up, priv->child_count) < 2) { - gf_log (this->name, GF_LOG_ERROR, "Stopping crawl as " + gf_log (this->name, GF_LOG_DEBUG, "Stopping crawl as " "< 2 children are up"); msg = "< 2 bricks in replica are running"; goto out; -- cgit