diff options
author | Raghavendra Bhat <raghavendra@redhat.com> | 2012-09-05 23:57:05 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2012-09-17 22:46:17 -0700 |
commit | db2b6e73fa35dc0a44eb7f7d5f3943891444903b (patch) | |
tree | 97f5c0fb825a13f0430c7ad6cf011e45f3c0cbd4 /xlators/storage | |
parent | 8062ad0799ad4e92882c25f5a7c6e95a06d63c12 (diff) |
logging: log ENOENT errors in DEBUG mode instead of ERROR or INFO
Change-Id: I0a43769223991e4ad5206b4382d737a0c3557bf3
BUG: 851953
Signed-off-by: Raghavendra Bhat <raghavendra@redhat.com>
Reviewed-on: http://review.gluster.org/3934
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/storage')
-rw-r--r-- | xlators/storage/posix/src/posix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xlators/storage/posix/src/posix.c b/xlators/storage/posix/src/posix.c index b6a8a99682d..cff2041f2a5 100644 --- a/xlators/storage/posix/src/posix.c +++ b/xlators/storage/posix/src/posix.c @@ -209,7 +209,8 @@ posix_stat (call_frame_t *frame, xlator_t *this, loc_t *loc, dict_t *xdata) if (op_ret == -1) { op_errno = errno; - gf_log (this->name, GF_LOG_ERROR, + gf_log (this->name, (op_errno == ENOENT)? + GF_LOG_DEBUG:GF_LOG_ERROR, "lstat on %s failed: %s", real_path, strerror (op_errno)); goto out; |