Revision
23344
Author
zarzycki@apple.com
Date
2007-08-17 12:48:42 -0700 (Fri, 17 Aug 2007)

Log Message

Adjust some log levels for GM.

Modified Paths

Diff

Modified: trunk/launchd/src/launchd_runtime.c (23343 => 23344)


--- trunk/launchd/src/launchd_runtime.c	2007-08-17 19:34:42 UTC (rev 23343)
+++ trunk/launchd/src/launchd_runtime.c	2007-08-17 19:48:42 UTC (rev 23344)
@@ -725,8 +725,9 @@
 	}
 
 	if (launchd_assumes(kev.flags & EV_ERROR)) {
-		if ((flags & EV_ADD) && !launchd_assumes(kev.data == 0)) {
-			log_kevent_struct(LOG_ERR, &kev, 0);
+		if ((flags & EV_ADD) && kev.data) {
+			runtime_syslog(LOG_DEBUG, "%s(): See the next line...", __func__);
+			log_kevent_struct(LOG_DEBUG, &kev, 0);
 			errno = kev.data;
 			return -1;
 		}