Josh L
Josh L
@coolaj86 How are you shipping logs? This is the first time i've used serviceman and `journalctl -xef --unit smtprelay.service` is showing great output but strangely `/var/log/smtprelay` is an empty folder.
Thanks! Here's what I did if it helps other people: `sudo vi /etc/systemd/system/smtprelay.service` ```bash [Service] StandardOutput=append:/var/log/smtprelay/service.log StandardError=append:/var/log/smtprelay/service_error.log ``` `touch /var/log/smtprelay/service.log` `touch /var/log/smtprelay/service_error.log` `sudo systemctl reload smtprelay.service` Then added /var/log/smtprelay/*.log as...