From 22cceb89044a616cf730b2bcac459300c9ecdbde Mon Sep 17 00:00:00 2001 From: Ashish Pandey Date: Fri, 27 Jan 2017 11:31:40 +0530 Subject: [PATCH 280/285] cluster/ec: Change level of messages to DEBUG Heal failed or passed should not be logged as warning. These can be observed from heal info if the heal is happening or not. If we require to debug a case where heal is not happening, we can set the level to DEBUG. >Change-Id: I347665c8c8b6223bb08a9f3dd5643a10ddc3b93e >BUG: 1417050 >Signed-off-by: Ashish Pandey >Reviewed-on: https://review.gluster.org/16473 >Smoke: Gluster Build System >NetBSD-regression: NetBSD Build System >Reviewed-by: Xavier Hernandez >CentOS-regression: Gluster Build System >Signed-off-by: Ashish Pandey Change-Id: I347665c8c8b6223bb08a9f3dd5643a10ddc3b93e BUG: 1415583 Signed-off-by: Ashish Pandey Reviewed-on: https://code.engineering.redhat.com/gerrit/96373 Reviewed-by: Atin Mukherjee --- xlators/cluster/ec/src/ec-common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xlators/cluster/ec/src/ec-common.c b/xlators/cluster/ec/src/ec-common.c index 3fbbe49..febf508 100644 --- a/xlators/cluster/ec/src/ec-common.c +++ b/xlators/cluster/ec/src/ec-common.c @@ -67,11 +67,11 @@ int32_t ec_heal_report(call_frame_t * frame, void * cookie, xlator_t * this, uintptr_t good, uintptr_t bad, dict_t * xdata) { if (op_ret < 0) { - gf_msg (this->name, GF_LOG_WARNING, op_errno, + gf_msg (this->name, GF_LOG_DEBUG, op_errno, EC_MSG_HEAL_FAIL, "Heal failed"); } else { if ((mask & ~good) != 0) { - gf_msg (this->name, GF_LOG_INFO, 0, + gf_msg (this->name, GF_LOG_DEBUG, 0, EC_MSG_HEAL_SUCCESS, "Heal succeeded on %d/%d " "subvolumes", gf_bits_count(mask & ~(good | bad)), -- 2.9.3