Perl Where perl's syslog wrote message?

NOTICE and higher messages typically end up in /var/log/messages by default.

See /etc/syslog.conf and the files in /etc/syslog.d/ and /usr/local/etc/syslog.d/.
Code:
*.notice;authpriv.none;kern.debug;lpr.info;mail.crit;news.err   /var/log/messages

You may want to enable this one, it's disabled by default, it will log everything:
Code:
# uncomment this to enable logging of all log messages to /var/log/all.log
# touch /var/log/all.log and chmod it to mode 600 before it will work
#*.*                                            /var/log/all.log
 
Back
Top