diff options
author | Mohamed Ashiq <ashiq333@gmail.com> | 2015-05-19 15:53:19 +0530 |
---|---|---|
committer | Pranith Kumar Karampuri <pkarampu@redhat.com> | 2015-06-25 01:50:53 -0700 |
commit | a1e32fbcfbfaf6e4c63e140b3b90a80dc748a269 (patch) | |
tree | 5eb99dd6e79798d8549bca070fd1f243029a5aaa /libglusterfs/src/dict.h | |
parent | 9df8366174d57e3cd948d19efa9cdbadecfc012d (diff) |
call-stub,circ-buff,client_t,compat,dict/libglusterfs : Porting to a new logging framework
Change-Id: Ie7d180e0ab2fed1270d66504606d1b2522884020
BUG: 1194640
Signed-off-by: Mohamed Ashiq <ashiq333@gmail.com>
Reviewed-on: http://review.gluster.org/10828
Tested-by: NetBSD Build System <jenkins@build.gluster.org>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Diffstat (limited to 'libglusterfs/src/dict.h')
-rw-r--r-- | libglusterfs/src/dict.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libglusterfs/src/dict.h b/libglusterfs/src/dict.h index 46cb2a3ca55..30c12bd3209 100644 --- a/libglusterfs/src/dict.h +++ b/libglusterfs/src/dict.h @@ -16,6 +16,7 @@ #include <pthread.h> #include "common-utils.h" +#include "libglusterfs-messages.h" typedef struct _data data_t; typedef struct _dict dict_t; @@ -30,7 +31,8 @@ typedef struct _data_pair data_pair_t; \ ret = dict_allocate_and_serialize (from_dict, to, &len);\ if (ret < 0) { \ - gf_log (this->name, GF_LOG_WARNING, \ + gf_msg (this->name, GF_LOG_WARNING, 0, \ + LG_MSG_DICT_SERIAL_FAILED, \ "failed to get serialized dict (%s)", \ (#from_dict)); \ ope = EINVAL; \ @@ -45,9 +47,10 @@ typedef struct _data_pair data_pair_t; to = dict_new(); \ GF_VALIDATE_OR_GOTO (xl->name, to, labl); \ \ - ret = dict_unserialize (buff, len, &to); \ + ret = dict_unserialize (buff, len, &to); \ if (ret < 0) { \ - gf_log (xl->name, GF_LOG_WARNING, \ + gf_msg (xl->name, GF_LOG_WARNING, 0, \ + LG_MSG_DICT_UNSERIAL_FAILED, \ "failed to unserialize dictionary (%s)", \ (#to)); \ \ |