From 8783d2feaeb74fa37494b84024521a6e8a9b9276 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 19 May 2010 21:51:25 +0200 Subject: [PATCH] execute: send output of services by default to same place as systemd internal output --- src/execute.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/execute.c b/src/execute.c index 51e768893..f3cf02615 100644 --- a/src/execute.c +++ b/src/execute.c @@ -1078,8 +1078,9 @@ void exec_context_init(ExecContext *c) { c->mount_flags = MS_SHARED; c->std_input = EXEC_INPUT_NULL; - c->std_output = EXEC_OUTPUT_SYSLOG; - c->std_error = EXEC_OUTPUT_SYSLOG; + c->std_output = c->std_error = + (log_get_target() == LOG_TARGET_CONSOLE ? EXEC_OUTPUT_INHERIT : + log_get_target() == LOG_TARGET_KMSG ? EXEC_OUTPUT_KMSG : EXEC_OUTPUT_SYSLOG); } void exec_context_done(ExecContext *c) { -- 2.30.2