From acbb02252a38214ecba3aa8a5c9b3669f9c9317e Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 27 Jan 2010 04:31:52 +0100 Subject: yay, we can start socket units --- execute.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'execute.c') diff --git a/execute.c b/execute.c index 518d7a6b0a..f3b4df930f 100644 --- a/execute.c +++ b/execute.c @@ -11,6 +11,7 @@ #include "strv.h" #include "macro.h" #include "util.h" +#include "log.h" static int close_fds(int except[], unsigned n_except) { DIR *d; @@ -111,6 +112,8 @@ int exec_spawn(const ExecCommand *command, const ExecContext *context, int *fds, assert(ret); assert(fds || n_fds <= 0); + log_debug("About to execute %s", command->path); + if ((pid = fork()) < 0) return -errno; -- cgit v1.2.3-54-g00ecf