# HG changeset patch # User David Demelier # Date 1674113201 -3600 # Node ID bf01db7f101724ba7d01068cc8300882c3cf99d0 # Parent f533edb4d9d87c209a2667e0553977bcedee500d add FAQ entry about OpenBSD's syslog diff -r f533edb4d9d8 -r bf01db7f1017 faq.md --- a/faq.md Thu Jan 19 08:17:58 2023 +0100 +++ b/faq.md Thu Jan 19 08:26:41 2023 +0100 @@ -10,6 +10,22 @@ Yes. +I don't see info messages in syslog on OpenBSD +---------------------------------------------- + +OpenBSD uses *notice* level of message information in its default +[syslog.conf](http://man.openbsd.org/syslog.conf) which has a higher priority +than *info*. Therefore, you need to adjust the syslog configuration file to +enable *info* level. + +If you want to simply change notice to info, change */etc/syslog.conf* like +this: + +``` +-*.notice;auth,authpriv,cron,ftp,kern,lpr,mail,user.none /var/log/messages ++*.info;auth,authpriv,cron,ftp,kern,lpr,mail,user.none /var/log/messages +``` + Why plugins are not loaded per server? --------------------------------------