diff options
| -rw-r--r-- | xlators/protocol/client/src/client-rpc-fops.c | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/xlators/protocol/client/src/client-rpc-fops.c b/xlators/protocol/client/src/client-rpc-fops.c index 3bd1206e4d0..3c014915ef5 100644 --- a/xlators/protocol/client/src/client-rpc-fops.c +++ b/xlators/protocol/client/src/client-rpc-fops.c @@ -2766,14 +2766,16 @@ out:          rsp.op_errno = op_errno;          if (rsp.op_ret == -1) {                  /* any error other than ENOENT */ -                if (!(local->loc.name && rsp.op_errno == ENOENT) && -		    !(rsp.op_errno == ESTALE)) +                if ((rsp.op_errno != ENOENT) && (rsp.op_errno != ESTALE))                          gf_log (this->name, GF_LOG_WARNING,                                  "remote operation failed: %s. Path: %s (%s)",                                  strerror (rsp.op_errno), local->loc.path,                                  loc_gfid_utoa (&local->loc));                  else -                        gf_log (this->name, GF_LOG_TRACE, "not found on remote node"); +                        gf_log (this->name, GF_LOG_DEBUG, +                                "remote operation failed: %s. Path: %s (%s)", +                                strerror (rsp.op_errno), local->loc.path, +                                loc_gfid_utoa (&local->loc));          }  | 
