From: Michal Schmidt Date: Fri, 16 Dec 2011 16:38:01 +0000 (+0100) Subject: service: use 'syslog+console' for sysv_console X-Git-Tag: v38~154 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=18d01523c88d59293d5bd1c199d41ce587e4856e service: use 'syslog+console' for sysv_console The default output to 'tty' for SysV service was making it hard to debug problems because error messages were missing from syslog. --- diff --git a/src/service.c b/src/service.c index 5243e690d..feecbbe2b 100644 --- a/src/service.c +++ b/src/service.c @@ -841,7 +841,7 @@ static int service_load_sysv_path(Service *s, const char *path) { s->restart = SERVICE_RESTART_NO; if (s->meta.manager->sysv_console) - s->exec_context.std_output = EXEC_OUTPUT_TTY; + s->exec_context.std_output = EXEC_OUTPUT_SYSLOG_AND_CONSOLE; s->exec_context.kill_mode = KILL_PROCESS;