diff options
author | Venkatesh Somyajulu <vsomyaju@redhat.com> | 2014-09-11 17:31:59 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2014-09-16 02:32:13 -0700 |
commit | c7437f35df1127c05a4df0f7bf3ae95b71b7831e (patch) | |
tree | 9beaa6b0058cd2044be477971c7bc990e8dbb961 /xlators | |
parent | 323ac2adb6a50713bd29c5bda028b6bf47bf2865 (diff) |
cluster/dht: Changed log level to DEBUG
Change-Id: Ia4dde95367b44d63f57f0840c2a2f351b1cfb072
BUG: 1138602
Signed-off-by: Venkatesh Somyajulu <vsomyaju@redhat.com>
Reviewed-on: http://review.gluster.org/8697
Reviewed-by: Raghavendra G <rgowdapp@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators')
-rw-r--r-- | xlators/cluster/dht/src/dht-common.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/xlators/cluster/dht/src/dht-common.c b/xlators/cluster/dht/src/dht-common.c index 088c3336a61..b01ac0d0738 100644 --- a/xlators/cluster/dht/src/dht-common.c +++ b/xlators/cluster/dht/src/dht-common.c @@ -1821,8 +1821,10 @@ dht_lookup_cbk (call_frame_t *frame, void *cookie, xlator_t *this, "op_errno %d", loc->path, op_ret, op_errno); if (ENTRY_MISSING (op_ret, op_errno)) { - gf_log (this->name, GF_LOG_INFO, "Entry %s missing on subvol" - " %s", loc->path, prev->this->name); + gf_msg_debug (this->name, 0, + "Entry %s missing on subvol %s", + loc->path, prev->this->name); + if (conf->search_unhashed == GF_DHT_LOOKUP_UNHASHED_ON) { local->op_errno = ENOENT; dht_lookup_everywhere (frame, this, loc); |