Date: Fri, 14 Nov 2014 10:05:54 +0000 (UTC) From: Edward Tomasz Napierala <trasz@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r274498 - stable/10/usr.sbin/autofs Message-ID: <201411141005.sAEA5sF9044197@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: trasz Date: Fri Nov 14 10:05:53 2014 New Revision: 274498 URL: https://svnweb.freebsd.org/changeset/base/274498 Log: MFC r273123: Silence down a warning that doesn't provide any useful information unless debug is enabled. Sponsored by: The FreeBSD Foundation Modified: stable/10/usr.sbin/autofs/automountd.c Directory Properties: stable/10/ (props changed) Modified: stable/10/usr.sbin/autofs/automountd.c ============================================================================== --- stable/10/usr.sbin/autofs/automountd.c Fri Nov 14 09:51:21 2014 (r274497) +++ stable/10/usr.sbin/autofs/automountd.c Fri Nov 14 10:05:53 2014 (r274498) @@ -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?201411141005.sAEA5sF9044197>