diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2017-10-26 13:36:41 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2017-10-26 13:36:41 -0500 |
commit | bb9c481f02cb1843e00bf32e98caf18b6b56bb4d (patch) | |
tree | 924b842c362ddc442bd27357481f57c37801682a | |
parent | 82da844b42ff83b2ebf944198e56ac2d81851897 (diff) |
supervise-daemon: log with the service name instead of "supervise-daemon"
-rw-r--r-- | src/rc/supervise-daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/supervise-daemon.c b/src/rc/supervise-daemon.c index b232e215..6c3c55bf 100644 --- a/src/rc/supervise-daemon.c +++ b/src/rc/supervise-daemon.c @@ -420,7 +420,6 @@ static void supervisor(char *exec, char **argv) time_t respawn_now= 0; time_t first_spawn= 0; - openlog(applet, LOG_PID, LOG_DAEMON); #ifndef RC_DEBUG signal_setup_restart(SIGHUP, handle_signal); signal_setup_restart(SIGINT, handle_signal); @@ -561,6 +560,7 @@ int main(int argc, char **argv) applet = basename_c(argv[0]); atexit(cleanup); svcname = getenv("RC_SVCNAME"); + openlog(svcname, LOG_PID, LOG_DAEMON); if ((tmp = getenv("SSD_NICELEVEL"))) if (sscanf(tmp, "%d", &nicelevel) != 1) |