From mboxrd@z Thu Jan 1 00:00:00 1970 From: teigland@sourceware.org Date: 14 Jun 2006 16:37:38 -0000 Subject: [Cluster-devel] cluster/group/dlm_controld action.c Message-ID: <20060614163738.16783.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: cluster Changes by: teigland at sourceware.org 2006-06-14 16:37:37 Modified files: group/dlm_controld: action.c Log message: don't syslog non-errors Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/group/dlm_controld/action.c.diff?cvsroot=cluster&r1=1.1&r2=1.2 --- cluster/group/dlm_controld/action.c 2006/06/09 20:59:57 1.1 +++ cluster/group/dlm_controld/action.c 2006/06/14 16:37:37 1.2 @@ -115,7 +115,7 @@ d = opendir(path); if (!d) { - log_error("%s: opendir failed: %d", path, errno); + log_debug("%s: opendir failed: %d", path, errno); return -1; } @@ -384,7 +384,7 @@ d = opendir(path); if (!d) { - log_error("%s: opendir failed: %d", path, errno); + log_debug("%s: opendir failed: %d", path, errno); return -1; } @@ -461,7 +461,7 @@ d = opendir(path); if (!d) { - log_error("%s: opendir failed: %d", path, errno); + log_debug("%s: opendir failed: %d", path, errno); return; }