From 1a63a750108b280070ed43e0dc02adb2c99c97cb Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 10 Apr 2010 17:46:01 +0200 Subject: [PATCH] execute: improve exec_spawn() logging --- execute.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/execute.c b/execute.c index e4a70cd09..46a983208 100644 --- a/execute.c +++ b/execute.c @@ -457,13 +457,18 @@ int exec_spawn(ExecCommand *command, pid_t pid; int r; + char *line; assert(command); assert(context); assert(ret); assert(fds || n_fds <= 0); - log_debug("About to execute %s", command->path); + if (!(line = exec_command_line(command))) + return -ENOMEM; + + log_debug("About to execute: %s", line); + free(line); if (cgroup_bondings) if ((r = cgroup_bonding_realize_list(cgroup_bondings))) -- 2.30.2