Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Oct 2014 07:09:45 +0000 (UTC)
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r273123 - head/usr.sbin/autofs
Message-ID:  <201410150709.s9F79jhR062791@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410150709.s9F79jhR062791>