diff options
author | Raghavendra Talur <rtalur@redhat.com> | 2013-03-05 17:43:26 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2013-03-12 08:12:33 -0700 |
commit | 8b5dbe6b43be3a5c23a7bd7ad1634b1e3b5bdc07 (patch) | |
tree | b0d2a41fd966565bc70242cfc45e0e67443c13c7 /xlators/storage/posix/src | |
parent | 8e495e92590107369626fdf98e93a7d0b2ca0507 (diff) |
Storage/posix: Don't log at ERROR level for failed getxattr.
Problem:
ENOATTR returned by
getxattr -n <NotAnExistingAttribute> <file>
was being logged at ERROR level.
Solution:
Moved logging to DEBUG level.
Change-Id: I982a577a4c231faa958ea71abdb272f8d5ffd70c
BUG: 918052
Signed-off-by: Raghavendra Talur <rtalur@redhat.com>
Reviewed-on: http://review.gluster.org/4628
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/storage/posix/src')
-rw-r--r-- | xlators/storage/posix/src/posix.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xlators/storage/posix/src/posix.c b/xlators/storage/posix/src/posix.c index 44aeca356..04b5f9bbc 100644 --- a/xlators/storage/posix/src/posix.c +++ b/xlators/storage/posix/src/posix.c @@ -2590,6 +2590,10 @@ posix_getxattr (call_frame_t *frame, xlator_t *this, "supported (try remounting" " brick with 'user_xattr' " "flag)"); + } else if (op_errno == ENOATTR) { + gf_log (this->name, GF_LOG_DEBUG, + "No such attribute:%s for file %s", + key, real_path); } else { gf_log (this->name, GF_LOG_ERROR, "getxattr failed on %s: %s (%s)", |