是否可以跳过“Samba 日志中的“started”条目?

是否可以跳过“Samba 日志中的“started”条目?

我刚刚在我的 Raspberry 上的 Raspbian Bookworm 下安装并配置了 SAMBA。

我注意到有很多日志条目,例如:

rpcd_mdssvc version 4.17.12-Debian started.
smbd version 4.17.12-Debian started.

等等。我希望系统只记录错误或异常行为。有没有办法摆脱这些“启动”日志?

答案1

您需要LogLevelMax在 samba systemd 服务中设置该值。

LogLevelMax=2 # or 3

以下是可能的值man 2 syslog

   Kernel constant   Level value   Meaning
   KERN_EMERG             0        System is unusable
   KERN_ALERT             1        Action must be taken immediately
   KERN_CRIT              2        Critical conditions
   KERN_ERR               3        Error conditions
   KERN_WARNING           4        Warning conditions
   KERN_NOTICE            5        Normal but significant condition
   KERN_INFO              6        Informational
   KERN_DEBUG             7        Debug-level messages

相关内容