diff options
author | Shehjar Tikoo <shehjart@gluster.com> | 2010-10-26 06:39:07 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2010-10-26 23:11:44 -0700 |
commit | 29dc176fa7832699b34a3a3e2f1a5f14ae55274a (patch) | |
tree | ed495494a3933ffbb15711ebadbc816449750540 /xlators/nfs | |
parent | bd890a0f53142e60e70e6cad8363738d607fbdb4 (diff) |
nfs-rpc: Fix log message for unsupported program
Signed-off-by: Shehjar Tikoo <shehjart@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 1973 (Unnecessary log message "RPC program not available")
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1973
Diffstat (limited to 'xlators/nfs')
-rw-r--r-- | xlators/nfs/lib/src/rpcsvc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/nfs/lib/src/rpcsvc.c b/xlators/nfs/lib/src/rpcsvc.c index 587a8469608..1041cfda522 100644 --- a/xlators/nfs/lib/src/rpcsvc.c +++ b/xlators/nfs/lib/src/rpcsvc.c @@ -1246,7 +1246,7 @@ nfs_rpcsvc_program_actor (rpcsvc_conn_t *conn, rpcsvc_request_t *req) goto err; if (req->prognum != program->prognum) { - gf_log (GF_RPCSVC, GF_LOG_ERROR, "RPC program not available"); + gf_log (GF_RPCSVC, GF_LOG_DEBUG, "RPC program not available"); err = PROG_UNAVAIL; goto err; } |