From 3fe99c8b8264269dd935d52a1a52581cc0f14e8e Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Fri, 27 Oct 2017 17:34:29 -0500 Subject: supervise-daemon: fix logging for reexec and the child command line --- src/rc/supervise-daemon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/rc') diff --git a/src/rc/supervise-daemon.c b/src/rc/supervise-daemon.c index bf27ad18..1d0c3407 100644 --- a/src/rc/supervise-daemon.c +++ b/src/rc/supervise-daemon.c @@ -161,7 +161,7 @@ static void cleanup(void) static void re_exec(void) { - syslog(LOG_WARNING, "Re-executing supervise-daemon"); + syslog(LOG_WARNING, "Re-executing for %s", svcname); execlp("supervise-daemon", "supervise-daemon", "--reexec", (char *) NULL); syslog(LOG_ERR, "Unable to execute supervise-daemon: %s", strerror(errno)); @@ -402,7 +402,7 @@ static void child_process(char *exec, char **argv) strcat(cmdline, " "); c++; } - syslog(LOG_INFO, "Running command line: %s", cmdline); + syslog(LOG_INFO, "Child command line: %s", cmdline); execvp(exec, argv); #ifdef HAVE_PAM -- cgit v1.2.3