summaryrefslogtreecommitdiffstats
path: root/main/syslog-ng/syslog-ng-destination.std
blob: 93bc3030afdeaf8c685a9be5819fc7cffec22735 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# ---------------------------------------------------------------------------------
# Default syslog-ng standard log files; Do not edit this file!
# append log file entry with line on a file: syslog-ng-destination.<package>
# ---------------------------------------------------------------------------------
  destination df_auth { file("/var/log/auth.log"); };
  destination df_kern { file("/var/log/kern.log"); };
  destination df_mail { file("/var/log/mail.log"); };
  destination df_error { file("/var/log/error.log"); };
# these files are meant for the mail system log files
# and provide re-usable destinations for {mail,cron,...}.info,
# {mail,cron,...}.notice, etc.
  destination df_facility_dot_info { file("/var/log/$FACILITY.info"); };
  destination df_facility_dot_notice { file("/var/log/$FACILITY.notice"); };
  destination df_facility_dot_warn { file("/var/log/$FACILITY.warn"); };
  destination df_facility_dot_err { file("/var/log/$FACILITY.err"); };
  destination df_facility_dot_crit { file("/var/log/$FACILITY.crit"); };
# some more classical and useful files found in standard syslog configurations
  destination df_debug { file("/var/log/debug"); };
  destination df_messages { file("/var/log/messages"); };
# consoles
# this will send messages to everyone logged in
  destination du_all { usertty("*"); };