summaryrefslogtreecommitdiffstats
path: root/xlators/cluster/afr/src/afr-self-heal-common.c
diff options
context:
space:
mode:
authorPranith Kumar K <pranithk@gluster.com>2010-07-27 03:13:55 +0000
committerAnand V. Avati <avati@dev.gluster.com>2010-07-27 06:48:47 -0700
commit232235a9ddeaf33159ee8af809efee440b06c6d1 (patch)
tree093c89fc1398656da2ab7cdae192669ccc624eea /xlators/cluster/afr/src/afr-self-heal-common.c
parent7c3ee2fd042c56ef6f53159f1ae9dd9a8f91c6f4 (diff)
cluster/afr: Logging improvement for self-heal
Signed-off-by: Pranith Kumar K <pranithk@gluster.com> Signed-off-by: Anand V. Avati <avati@dev.gluster.com> BUG: 1037 (selfheal information in normal logging mode) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1037
Diffstat (limited to 'xlators/cluster/afr/src/afr-self-heal-common.c')
-rw-r--r--xlators/cluster/afr/src/afr-self-heal-common.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/xlators/cluster/afr/src/afr-self-heal-common.c b/xlators/cluster/afr/src/afr-self-heal-common.c
index d37c1b25d..e3e484aab 100644
--- a/xlators/cluster/afr/src/afr-self-heal-common.c
+++ b/xlators/cluster/afr/src/afr-self-heal-common.c
@@ -1501,6 +1501,7 @@ afr_self_heal_completion_cbk (call_frame_t *bgsh_frame, xlator_t *this)
afr_private_t * priv = NULL;
afr_local_t * local = NULL;
afr_self_heal_t * sh = NULL;
+ char sh_type_str[256] = {0,};
priv = this->private;
local = bgsh_frame->local;
@@ -1512,8 +1513,11 @@ afr_self_heal_completion_cbk (call_frame_t *bgsh_frame, xlator_t *this)
afr_set_split_brain (this, local->cont.lookup.inode, _gf_false);
}
- gf_log (this->name, GF_LOG_TRACE,
- "background self-heal completed");
+ afr_self_heal_type_str_get(sh, sh_type_str,
+ sizeof(sh_type_str));
+ gf_log (this->name, GF_LOG_NORMAL,
+ "background %s self-heal completed on %s", sh_type_str,
+ local->loc.path);
if (!sh->unwound) {
sh->unwind (sh->orig_frame, this);