From: Christian Brauner Date: Sun, 26 Feb 2017 11:51:30 +0000 (+0100) Subject: start: dumb down SIGCHLD from WARN() to NOTICE() X-Git-Tag: lxc-2.1.0~189^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1445%2Fhead;p=thirdparty%2Flxc.git start: dumb down SIGCHLD from WARN() to NOTICE() Signed-off-by: Christian Brauner --- diff --git a/src/lxc/start.c b/src/lxc/start.c index ab5f5ade4..e586881a9 100644 --- a/src/lxc/start.c +++ b/src/lxc/start.c @@ -333,7 +333,7 @@ static int signal_handler(int fd, uint32_t events, void *data, * by a process different from the container init. */ if (siginfo.ssi_pid != *pid) { - WARN("Invalid pid for SIGCHLD. Received pid %d, expected pid %d.", siginfo.ssi_pid, *pid); + NOTICE("Received SIGCHLD from pid %d instead of container init %d.", siginfo.ssi_pid, *pid); return init_died ? 1 : 0; }