It appears that there is no way to set the syslog facility for applications of type service_systemd_linux.
The first argument passed to the syslog.New function is fixed to syslog.LOG_INFO, which results in the facility always being set to kern.
|
w, err := syslog.New(syslog.LOG_INFO, name) |
Is there any workaround for this issue?
It appears that there is no way to set the syslog facility for applications of type service_systemd_linux.
The first argument passed to the syslog.New function is fixed to syslog.LOG_INFO, which results in the facility always being set to
kern.service/service_unix.go
Line 23 in becf2eb
Is there any workaround for this issue?