svn commit: r273123 - head/usr.sbin/autofs

Edward Tomasz Napierala trasz at FreeBSD.org
Wed Oct 15 07:09:46 UTC 2014


Author: trasz
Date: Wed Oct 15 07:09:45 2014
New Revision: 273123
URL: https://svnweb.freebsd.org/changeset/base/273123

Log:
  Silence down a warning that doesn't provide any useful information unless
  debug is enabled.
  
  MFC after:	1 month
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/usr.sbin/autofs/automountd.c

Modified: head/usr.sbin/autofs/automountd.c
==============================================================================
--- head/usr.sbin/autofs/automountd.c	Wed Oct 15 06:31:08 2014	(r273122)
+++ head/usr.sbin/autofs/automountd.c	Wed Oct 15 07:09:45 2014	(r273123)
@@ -366,7 +366,7 @@ wait_for_children(bool block)
 			log_warnx("child process %d terminated with signal %d",
 			    pid, WTERMSIG(status));
 		} else if (WEXITSTATUS(status) != 0) {
-			log_warnx("child process %d terminated with exit status %d",
+			log_debugx("child process %d terminated with exit status %d",
 			    pid, WEXITSTATUS(status));
 		} else {
 			log_debugx("child process %d terminated gracefully", pid);


More information about the svn-src-head mailing list