From: Lennart Poettering Date: Fri, 29 Dec 2017 16:11:49 +0000 (+0100) Subject: exec-util: drop redundant log message in do_spawn() X-Git-Tag: v237~146^2~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=66fb11423bb6e327291be32da7f8f68d88792cb2;p=thirdparty%2Fsystemd.git exec-util: drop redundant log message in do_spawn() safe_fork() logs that anyway, hence no need to do this twice. --- diff --git a/src/basic/exec-util.c b/src/basic/exec-util.c index 762537afc93..95194e5f055 100644 --- a/src/basic/exec-util.c +++ b/src/basic/exec-util.c @@ -82,7 +82,6 @@ static int do_spawn(const char *path, char *argv[], int stdout_fd, pid_t *pid) { _exit(EXIT_FAILURE); } - log_debug("Spawned %s as " PID_FMT ".", path, _pid); *pid = _pid; return 1; }