dict.c: fix a redundant log in DEBUG level

Signed-off-by: Amar Tumballi <amar@gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>

BUG: 1493 (log enhancement to print calling function..)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1493
This commit is contained in:
Amar Tumballi 2010-09-09 02:03:15 +00:00 committed by Vijay Bellur
parent 6faa761822
commit eae063da57

View File

@ -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;
}