diff options
author | Vikas Gorur <vikas@gluster.com> | 2009-04-21 02:34:08 -0700 |
---|---|---|
committer | Anand V. Avati <avati@amp.gluster.com> | 2009-04-24 21:00:14 +0530 |
commit | 9c540ee5bf8a620db3855814db7b0f0f71644aac (patch) | |
tree | fc5765ac3e83f74008e7f8c75d95f87d1d577a6e /xlators/cluster/afr/src/afr-inode-read.c | |
parent | 04532fe34c582f551ec7d81b3fa6168f3a4a4d21 (diff) |
Cleaned up log messages in replicate.
Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
Diffstat (limited to 'xlators/cluster/afr/src/afr-inode-read.c')
-rw-r--r-- | xlators/cluster/afr/src/afr-inode-read.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/xlators/cluster/afr/src/afr-inode-read.c b/xlators/cluster/afr/src/afr-inode-read.c index 2fa8f9e36..d2811acf0 100644 --- a/xlators/cluster/afr/src/afr-inode-read.c +++ b/xlators/cluster/afr/src/afr-inode-read.c @@ -147,8 +147,8 @@ afr_access (call_frame_t *frame, xlator_t *this, call_child = afr_first_up_child (priv); if (call_child == -1) { op_errno = ENOTCONN; - gf_log (this->name, GF_LOG_ERROR, - "no child is up :("); + gf_log (this->name, GF_LOG_DEBUG, + "no child is up"); goto out; } @@ -269,8 +269,8 @@ afr_stat (call_frame_t *frame, xlator_t *this, call_child = afr_first_up_child (priv); if (call_child == -1) { op_errno = ENOTCONN; - gf_log (this->name, GF_LOG_ERROR, - "no child is up :("); + gf_log (this->name, GF_LOG_DEBUG, + "no child is up"); goto out; } @@ -396,8 +396,8 @@ afr_fstat (call_frame_t *frame, xlator_t *this, if (call_child == -1) { op_errno = ENOTCONN; - gf_log (this->name, GF_LOG_ERROR, - "no child is up :("); + gf_log (this->name, GF_LOG_DEBUG, + "no child is up"); goto out; } @@ -516,8 +516,8 @@ afr_readlink (call_frame_t *frame, xlator_t *this, if (call_child == -1) { op_errno = ENOTCONN; - gf_log (this->name, GF_LOG_ERROR, - "no child is up :("); + gf_log (this->name, GF_LOG_DEBUG, + "no child is up"); goto out; } @@ -634,8 +634,8 @@ afr_getxattr (call_frame_t *frame, xlator_t *this, if (call_child == -1) { op_errno = ENOTCONN; - gf_log (this->name, GF_LOG_ERROR, - "no child is up :("); + gf_log (this->name, GF_LOG_DEBUG, + "no child is up"); goto out; } @@ -782,8 +782,8 @@ afr_readv (call_frame_t *frame, xlator_t *this, call_child = afr_first_up_child (priv); if (call_child == -1) { op_errno = ENOTCONN; - gf_log (this->name, GF_LOG_ERROR, - "no child is up :("); + gf_log (this->name, GF_LOG_DEBUG, + "no child is up"); goto out; } |