From db2b6e73fa35dc0a44eb7f7d5f3943891444903b Mon Sep 17 00:00:00 2001 From: Raghavendra Bhat Date: Wed, 5 Sep 2012 23:57:05 +0530 Subject: logging: log ENOENT errors in DEBUG mode instead of ERROR or INFO Change-Id: I0a43769223991e4ad5206b4382d737a0c3557bf3 BUG: 851953 Signed-off-by: Raghavendra Bhat Reviewed-on: http://review.gluster.org/3934 Tested-by: Gluster Build System Reviewed-by: Amar Tumballi Reviewed-by: Vijay Bellur --- xlators/protocol/server/src/server-rpc-fops.c | 3 ++- xlators/storage/posix/src/posix.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'xlators') diff --git a/xlators/protocol/server/src/server-rpc-fops.c b/xlators/protocol/server/src/server-rpc-fops.c index db02aaf92..422ed3188 100644 --- a/xlators/protocol/server/src/server-rpc-fops.c +++ b/xlators/protocol/server/src/server-rpc-fops.c @@ -1078,7 +1078,8 @@ server_unlink_cbk (call_frame_t *frame, void *cookie, xlator_t *this, rsp.xdata.xdata_len, op_errno, out); if (op_ret) { - gf_log (this->name, GF_LOG_INFO, + gf_log (this->name, (op_errno == ENOENT)? + GF_LOG_DEBUG:GF_LOG_ERROR, "%"PRId64": UNLINK %s (%s/%s) ==> (%s)", frame->root->unique, state->loc.path, uuid_utoa (state->resolve.pargfid), diff --git a/xlators/storage/posix/src/posix.c b/xlators/storage/posix/src/posix.c index b6a8a9968..cff2041f2 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; -- cgit