diff options
author | Ravishankar N <ravishankar@redhat.com> | 2014-05-16 15:41:33 +0530 |
---|---|---|
committer | Pranith Kumar Karampuri <pkarampu@redhat.com> | 2014-05-17 01:46:17 -0700 |
commit | f4a391e5a44950b0468af082255b9f5abf52b10b (patch) | |
tree | c0ad8e56213dbe845b29f834330092650d51d207 /xlators/cluster/afr/src/afr-transaction.c | |
parent | 6a9a52c932bc5be469af119e5b0b3afb8046f625 (diff) |
cluster/afr: move messages to new logging framework
Change important (from a diagnostics point of view) log messages to use
the gf_msg() framework.
Change-Id: I0a58184bbb78989db149e67f07c140a21c781bc2
BUG: 1075611
Signed-off-by: Ravishankar N <ravishankar@redhat.com>
Reviewed-on: http://review.gluster.org/7784
Reviewed-by: Krutika Dhananjay <kdhananj@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Tested-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Diffstat (limited to 'xlators/cluster/afr/src/afr-transaction.c')
-rw-r--r-- | xlators/cluster/afr/src/afr-transaction.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xlators/cluster/afr/src/afr-transaction.c b/xlators/cluster/afr/src/afr-transaction.c index 270e2212913..a2eab3494e3 100644 --- a/xlators/cluster/afr/src/afr-transaction.c +++ b/xlators/cluster/afr/src/afr-transaction.c @@ -548,8 +548,9 @@ afr_handle_quorum (call_frame_t *frame) file = local->loc.path; } - gf_log (frame->this->name, GF_LOG_WARNING, "%s: Failing %s as quorum " - "is not met", file, gf_fop_list[local->op]); + gf_msg (frame->this->name, GF_LOG_WARNING, 0, AFR_MSG_QUORUM_FAIL, + "%s: Failing %s as quorum is not met", + file, gf_fop_list[local->op]); for (i = 0; i < priv->child_count; i++) { if (local->transaction.pre_op[i]) |