summaryrefslogtreecommitdiff
path: root/execute.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-04-10 17:46:01 +0200
committerLennart Poettering <lennart@poettering.net>2010-04-10 18:00:34 +0200
commit1a63a750108b280070ed43e0dc02adb2c99c97cb (patch)
tree31b9a43075da86351412181cba9c3ead06343385 /execute.c
parent6326a423e7d3df2062bf29a4e9710aeecac89411 (diff)
execute: improve exec_spawn() logging
Diffstat (limited to 'execute.c')
-rw-r--r--execute.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/execute.c b/execute.c
index e4a70cd09a..46a9832081 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)))