diff options
author | Mirco Tischler <mt-ml@gmx.de> | 2013-01-17 18:55:06 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-01-18 11:14:00 -0500 |
commit | bbc9006e6b5665073149331d75c104a33224dc19 (patch) | |
tree | 116572d108aaa170449fa8eb9617980e77a238b6 /src/core/execute.c | |
parent | ef1673d16907726d83bdff2e57b5261997a85020 (diff) |
core: log USER_UNIT instead of UNIT if in user session
Diffstat (limited to 'src/core/execute.c')
-rw-r--r-- | src/core/execute.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/execute.c b/src/core/execute.c index 9718e43a70..65a10af3b0 100644 --- a/src/core/execute.c +++ b/src/core/execute.c @@ -1024,8 +1024,8 @@ int exec_spawn(ExecCommand *command, r = exec_context_load_environment(context, &files_env); if (r < 0) { - log_struct(LOG_ERR, - "UNIT=%s", unit_id, + log_struct_unit(LOG_ERR, + unit_id, "MESSAGE=Failed to load environment files: %s", strerror(-r), "ERRNO=%d", -r, NULL); @@ -1039,8 +1039,8 @@ int exec_spawn(ExecCommand *command, if (!line) return log_oom(); - log_struct(LOG_DEBUG, - "UNIT=%s", unit_id, + log_struct_unit(LOG_DEBUG, + unit_id, "MESSAGE=About to execute %s", line, NULL); free(line); @@ -1512,8 +1512,8 @@ int exec_spawn(ExecCommand *command, _exit(r); } - log_struct(LOG_DEBUG, - "UNIT=%s", unit_id, + log_struct_unit(LOG_DEBUG, + unit_id, "MESSAGE=Forked %s as %lu", command->path, (unsigned long) pid, NULL); |