diff --git a/source/getting-started/autostart-systemd.markdown b/source/getting-started/autostart-systemd.markdown index 2df3a80a9ce..f3e90be5959 100644 --- a/source/getting-started/autostart-systemd.markdown +++ b/source/getting-started/autostart-systemd.markdown @@ -68,3 +68,8 @@ To get Home Assistant's logging output, simple use `journalctl`. ```bash $ 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' +```