From eae063da57a47102d264f27395677262fb17dc75 Mon Sep 17 00:00:00 2001 From: Amar Tumballi Date: Thu, 9 Sep 2010 02:03:15 +0000 Subject: dict.c: fix a redundant log in DEBUG level Signed-off-by: Amar Tumballi Signed-off-by: Vijay Bellur BUG: 1493 (log enhancement to print calling function..) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1493 --- libglusterfs/src/dict.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libglusterfs/src/dict.c') diff --git a/libglusterfs/src/dict.c b/libglusterfs/src/dict.c index f2528aeeb..f686857ee 100644 --- a/libglusterfs/src/dict.c +++ b/libglusterfs/src/dict.c @@ -322,8 +322,8 @@ dict_get (dict_t *this, data_pair_t *pair; if (!this || !key) { - gf_log ("dict", GF_LOG_DEBUG, - "@this=%p @key=%p", this, key); + gf_log ("dict", GF_LOG_TRACE, + "@this=%p key=%s", this, (key) ? key : "()"); return NULL; } -- cgit