mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 12:33:02 +02:00
Infix has the catch-all /var/log/debug, and now also /var/log/routing for debug messages from Frr. The log file /var/log/syslog now catches *all* messages except auth*, which may contain secrets, except debug messages. Contrast this with /var/log/messages which only logs info/notice/warn -- i.e., no error and above log messages. Due to the way syslogd parses /etc/syslog.conf et al, we override the default in Infix to disable the default /var/log/syslog, otherwise we would get duplicates to the same log file. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
4 lines
193 B
Plaintext
4 lines
193 B
Plaintext
# Skip debug level messages in our /var/log/syslog, we have a dedicate
|
|
# debug log instead, as well as facility specific logs, e.g., routing
|
|
*.info;auth,authpriv.none -/var/log/syslog
|