"Fossies" - the Fresh Open Source Software Archive 
Member "aif-2.1.1/contrib/Slackware/syslog.conf" (16 Sep 2020, 2112 Bytes) of package /linux/privat/aif-2.1.1.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Generic config files source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
See also the latest
Fossies "Diffs" side-by-side code changes report for "syslog.conf":
2.1.0_vs_2.1.1.
1 # /etc/syslog.conf Example configuration file for syslogd on Slackware (you can optionally use this as a replacement).
2 # This will redirect all kernel-debug logging to file /var/log/arno-iptables-firewall.
3 # Don't forget to touch(create) /var/log/arno-iptables-firewall first & set "LOGLEVEL=debug" in the
4 # firewall configuration file (firewall.conf)!
5
6 # For info about the format of this file, see "man syslog.conf"
7 # and /usr/doc/sysklogd/README.linux. Note the '-' prefixing some
8 # of these entries; this omits syncing the file after every logging.
9 # In the event of a crash, some log information might be lost, so
10 # if this is a concern to you then you might want to remove the '-'.
11 # Be advised this will cause a performation loss if you're using
12 # programs that do heavy logging.
13
14 # Uncomment this to see kernel messages on the console.
15 #kern.*;kern.!=debug /dev/console
16
17 # Log anything 'info' or higher, but lower than 'warn'.
18 # Exclude authpriv, cron, mail, and news. These are logged elsewhere.
19 *.info;*.!warn;\
20 authpriv.none;cron.none;mail.none;news.none -/var/log/messages
21
22 # Log anything 'warn' or higher.
23 # Exclude authpriv, cron, mail, and news. These are logged elsewhere.
24 *.warn;\
25 authpriv.none;cron.none;mail.none;news.none -/var/log/syslog
26
27 # Debugging information is logged here.
28 *.=debug;kern.!=debug -/var/log/debug
29
30 # Logging for iptables
31 kern.=debug -/var/log/arno-iptables-firewall
32
33 # Private authentication message logging:
34 authpriv.* -/var/log/secure
35
36 # Cron related logs:
37 cron.* -/var/log/cron
38
39 # Mail related logs:
40 mail.* -/var/log/maillog
41
42 # Emergency level messages go to all users:
43 *.emerg *
44
45 # This log is for news and uucp errors:
46 uucp,news.crit -/var/log/spooler
47
48 # Uncomment these if you'd like INN to keep logs on everything.
49 # You won't need this if you don't run INN (the InterNetNews daemon).
50 #news.=crit -/var/log/news/news.crit
51 #news.=err -/var/log/news/news.err
52 #news.notice -/var/log/news/news.notice
53
54