[Cluster-devel] cluster/group/dlm_controld action.c

teigland at sourceware.org teigland at sourceware.org
Wed Jun 14 16:37:38 UTC 2006


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




More information about the Cluster-devel mailing list