aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/autofs
diff options
context:
space:
mode:
authorEdward Tomasz Napierala <trasz@FreeBSD.org>2014-10-15 07:09:45 +0000
committerEdward Tomasz Napierala <trasz@FreeBSD.org>2014-10-15 07:09:45 +0000
commit45c3925d9d0685634c9a14fe8a69912435380c05 (patch)
treed9ff7250aa8ec239eabab2023fbfc5b80b59a670 /usr.sbin/autofs
parentae3fa78b9b4259140356956f18143481c1eb9f40 (diff)
downloadsrc-45c3925d9d0685634c9a14fe8a69912435380c05.tar.gz
src-45c3925d9d0685634c9a14fe8a69912435380c05.zip
Silence down a warning that doesn't provide any useful information unless
debug is enabled. MFC after: 1 month Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=273123
Diffstat (limited to 'usr.sbin/autofs')
-rw-r--r--usr.sbin/autofs/automountd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/autofs/automountd.c b/usr.sbin/autofs/automountd.c
index b5111035fb6c..7c40b6bf80ac 100644
--- a/usr.sbin/autofs/automountd.c
+++ b/usr.sbin/autofs/automountd.c
@@ -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);