From 66fb11423bb6e327291be32da7f8f68d88792cb2 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 29 Dec 2017 17:11:49 +0100 Subject: [PATCH] exec-util: drop redundant log message in do_spawn() safe_fork() logs that anyway, hence no need to do this twice. --- src/basic/exec-util.c | 1 - 1 file changed, 1 deletion(-) 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; } -- 2.47.3