log level fix in storage/posix

This commit is contained in:
Anand V. Avati 2009-05-05 20:03:36 +05:30
parent f62628af61
commit 9cb93f58be

View File

@ -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);
}