From b6a0ab1dfe85b84ab30a1b656a6bc88b9e025434 Mon Sep 17 00:00:00 2001 From: Jeff Layton Date: Wed, 9 May 2012 12:36:02 -0400 Subject: [PATCH] nfsdcld: demote pipe opening error to D_GENERAL It's actually expected that this will fail initially when we start the daemon. Until knfsd has been started, the pipe doesn't exist, and we generally want to start nfsdcld before starting knfsd. Avoid the scary error message by demoting this message to D_GENERAL. Signed-off-by: Jeff Layton Signed-off-by: Steve Dickson --- utils/nfsdcld/nfsdcld.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/nfsdcld/nfsdcld.c b/utils/nfsdcld/nfsdcld.c index 2f0b004..c9f0fb9 100644 --- a/utils/nfsdcld/nfsdcld.c +++ b/utils/nfsdcld/nfsdcld.c @@ -89,7 +89,7 @@ cld_pipe_open(struct cld_client *clnt) xlog(D_GENERAL, "%s: opening upcall pipe %s", __func__, pipepath); fd = open(pipepath, O_RDWR, 0); if (fd < 0) { - xlog(L_ERROR, "%s: open of %s failed: %m", __func__, pipepath); + xlog(D_GENERAL, "%s: open of %s failed: %m", __func__, pipepath); return -errno; } -- 2.39.2