mirror of
https://github.com/phusion/baseimage-docker.git
synced 2026-03-26 04:18:46 +00:00
configured syslog-ng to log to stdout directly instead of using tail (#438)
This commit is contained in:
@@ -74,6 +74,9 @@ destination d_xconsole { pipe("/dev/xconsole"); };
|
||||
# Debian only
|
||||
destination d_ppp { file("/var/log/ppp.log"); };
|
||||
|
||||
# stdout for docker
|
||||
destination d_stdout { pipe("/dev/stdout"); };
|
||||
|
||||
########################
|
||||
# Filters
|
||||
########################
|
||||
@@ -119,7 +122,7 @@ log { source(s_src); filter(f_cron); destination(d_cron); };
|
||||
log { source(s_src); filter(f_daemon); destination(d_daemon); };
|
||||
log { source(s_src); filter(f_kern); destination(d_kern); };
|
||||
log { source(s_src); filter(f_lpr); destination(d_lpr); };
|
||||
log { source(s_src); filter(f_syslog3); destination(d_syslog); };
|
||||
log { source(s_src); filter(f_syslog3); destination(d_syslog); destination(d_stdout); };
|
||||
log { source(s_src); filter(f_user); destination(d_user); };
|
||||
log { source(s_src); filter(f_uucp); destination(d_uucp); };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user