mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-26 15:34:59 +00:00
This allows log rotation, redirect via syslog etc. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
30 lines
696 B
Plaintext
30 lines
696 B
Plaintext
# /etc/syslog.conf Configuration file for syslogd.
|
|
#
|
|
# For more information see syslog.conf(5)
|
|
# manpage.
|
|
|
|
# First some standard logfiles. Log by facility.
|
|
#
|
|
|
|
auth,authpriv.* /var/log/auth.log
|
|
*.*;auth,authpriv.none -/var/log/syslog
|
|
cron.* /var/log/cron.log
|
|
daemon.* -/var/log/daemon.log
|
|
kern.* -/var/log/kern.log
|
|
lpr.* -/var/log/lpr.log
|
|
mail.* -/var/log/mail.log
|
|
user.* -/var/log/user.log
|
|
|
|
# Local facilities for our programs
|
|
local0.* -/var/log/docker.log
|
|
|
|
# Some `catch-all' logfiles.
|
|
#
|
|
*.=debug;\
|
|
auth,authpriv.none;\
|
|
news.none;mail.none -/var/log/debug
|
|
*.=info;*.=notice;*.=warning;\
|
|
auth,authpriv.none;\
|
|
cron,daemon.none;\
|
|
mail,news.none -/var/log/messages
|