Update autostart-systemd.markdown (#748)

Small grep line added to make it easier to spot errors.
This commit is contained in:
ThinkPadNL 2016-08-08 17:06:27 +02:00 committed by Fabian Affolter
parent defccd6f4a
commit 27acac5ccc

View File

@ -68,3 +68,8 @@ To get Home Assistant's logging output, simple use `journalctl`.
```bash ```bash
$ journalctl -f -u home-assistant@[your user] $ journalctl -f -u home-assistant@[your user]
``` ```
Because the log can scroll quite quickly, you might want to open a second terminal to view only the errors:
```bash
$ journalctl -f -u home-assistant@[your user] | grep -i 'error'
```