summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnand V. Avati <avati@amp.gluster.com>2009-05-05 20:03:36 +0530
committerAnand V. Avati <avati@amp.gluster.com>2009-05-05 20:10:44 +0530
commit9cb93f58be9d032bec12ca04275e84904bf22c0b (patch)
tree5091875e44e1952d86d7f8956696cadbcc688802
parentf62628af61f5ef72c6af2b807c1bba71f291a366 (diff)
log level fix in storage/posix
-rw-r--r--xlators/storage/posix/src/posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/storage/posix/src/posix.c b/xlators/storage/posix/src/posix.c
index 6667ab19eb7..e4dc519390f 100644
--- a/xlators/storage/posix/src/posix.c
+++ b/xlators/storage/posix/src/posix.c
@@ -1136,7 +1136,7 @@ posix_chmod (call_frame_t *frame, xlator_t *this,
op_ret = lchmod (real_path, mode);
if ((op_ret == -1) && (errno == ENOSYS)) {
- gf_log (this->name, GF_LOG_DEBUG,
+ gf_log (this->name, GF_LOG_TRACE,
"lchmod not implemented, falling back to chmod");
op_ret = chmod (real_path, mode);
}