We have a custom service we start via systemd
. File is stored at /etc/systemd/system/custom.service
.
That's all great but we just had a situation where the disk ran full. I guess systemd
catches all of the process' stdout
and writes it into /var/log/syslog
.
Our custom service writes all of STDOUT
into actual log files. So we could ignore syslog
.
How can I suppress everything from stdout
being written to syslog
?