diff options
author | Sachidananda Urs <sac@gluster.com> | 2011-10-29 14:20:02 +0530 |
---|---|---|
committer | Vijay Bellur <vijay@gluster.com> | 2011-11-15 23:30:22 -0800 |
commit | 5e14417b478520620bb5990eda41e3ad3e9af09c (patch) | |
tree | b8a1913c6abc7798cf955c1293f9f465a8284ae5 /xlators/cluster/dht/src/dht-diskusage.c | |
parent | 78f3ee4fb1687db948ad5d07d1ed9e6177cc54bc (diff) |
Move some of the messages to log level `TRACE'.
Change-Id: I46133b5e2218b9d810251b3dadadd8f157ab07d7
BUG: 3761
Reviewed-on: http://review.gluster.com/643
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Amar Tumballi <amar@gluster.com>
Diffstat (limited to 'xlators/cluster/dht/src/dht-diskusage.c')
-rw-r--r-- | xlators/cluster/dht/src/dht-diskusage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/cluster/dht/src/dht-diskusage.c b/xlators/cluster/dht/src/dht-diskusage.c index d27d8bf91..0b8c116ca 100644 --- a/xlators/cluster/dht/src/dht-diskusage.c +++ b/xlators/cluster/dht/src/dht-diskusage.c @@ -48,7 +48,7 @@ dht_du_info_cbk (call_frame_t *frame, void *cookie, xlator_t *this, prev = cookie; if (op_ret == -1) { - gf_log (this->name, GF_LOG_DEBUG, + gf_log (this->name, GF_LOG_WARNING, "failed to get disk info from %s", prev->this->name); goto out; } @@ -64,7 +64,7 @@ dht_du_info_cbk (call_frame_t *frame, void *cookie, xlator_t *this, if (prev->this == conf->subvolumes[i]) { conf->du_stats[i].avail_percent = percent; conf->du_stats[i].avail_space = bytes; - gf_log (this->name, GF_LOG_DEBUG, + gf_log (this->name, GF_LOG_TRACE, "on subvolume '%s': avail_percent is: " "%.2f and avail_space is: %"PRIu64"", prev->this->name, |