summaryrefslogtreecommitdiff
path: root/src/basic
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2017-12-29 17:11:49 +0100
committerSven Eden <yamakuzure@gmx.net>2018-05-30 07:49:51 +0200
commit069824bd6c91476242902f7a21d27df11ce18aac (patch)
treecb056dc764cc543ea5bd9e4dae7fb79e73050f2a /src/basic
parented4c3116dde259feafce15e05a9360f5debb0386 (diff)
exec-util: drop redundant log message in do_spawn()
safe_fork() logs that anyway, hence no need to do this twice.
Diffstat (limited to 'src/basic')
-rw-r--r--src/basic/exec-util.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/basic/exec-util.c b/src/basic/exec-util.c
index 2a43f78a1..f3182d306 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;
}