diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-04-18 02:18:33 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-04-18 02:18:33 +0200 |
commit | 099a804b11072b6be9fd32b3aa1f90b393adef98 (patch) | |
tree | bfcb7502b765bff3de1a0aa866a577aad9d0aa36 /src/core | |
parent | a5e4972c8956cecf35fa4780e1cfe7c378bfcba1 (diff) |
execute: always add in EXECUTABLE= field when we log something about execution
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/execute.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/core/execute.c b/src/core/execute.c index c363342e80..aad11c94aa 100644 --- a/src/core/execute.c +++ b/src/core/execute.c @@ -1036,9 +1036,10 @@ int exec_spawn(ExecCommand *command, return log_oom(); log_struct_unit(LOG_DEBUG, - unit_id, - "MESSAGE=About to execute %s", line, - NULL); + unit_id, + "EXECUTABLE=%s", command->path, + "MESSAGE=About to execute: %s", line, + NULL); free(line); r = cgroup_bonding_realize_list(cgroup_bondings); @@ -1523,8 +1524,8 @@ int exec_spawn(ExecCommand *command, log_struct_unit(LOG_DEBUG, unit_id, "EXECUTABLE=%s", command->path, - "MESSAGE=Executing: %s", - line, NULL); + "MESSAGE=Executing: %s", line, + NULL); log_close(); free(line); line = NULL; |