diff options
author | Steve Wills <swills@FreeBSD.org> | 2019-09-17 20:03:20 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2019-09-17 20:03:20 +0000 |
commit | cd4b2a3c08889873258af9e62f4345bbda7fbc12 (patch) | |
tree | 9ed4c77e0a06edfe8dfc64320af6f025478fc4d8 /usr.sbin/syslogd | |
parent | 093aa3e311c4fb8268158ee679c9b1f15455574d (diff) |
log daemon.info to /var/log/daemon.log by default
log daemon facility now that daemon(8) has syslog support which defaults to
daemon facility, info priority
Reviewed by: bapt
Approved by: bapt
Differential Revision: https://reviews.freebsd.org/D21561
Notes
Notes:
svn path=/head/; revision=352460
Diffstat (limited to 'usr.sbin/syslogd')
-rw-r--r-- | usr.sbin/syslogd/syslog.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.sbin/syslogd/syslog.conf b/usr.sbin/syslogd/syslog.conf index e0df421b9021..a556f309d943 100644 --- a/usr.sbin/syslogd/syslog.conf +++ b/usr.sbin/syslogd/syslog.conf @@ -14,6 +14,7 @@ cron.* /var/log/cron !-devd *.=debug /var/log/debug.log *.emerg * +daemon.info /var/log/daemon.log # uncomment this to log all writes to /dev/console to /var/log/console.log # touch /var/log/console.log and chmod it to mode 600 before it will work #console.info /var/log/console.log |