From 27acac5cccad6c09d9f5ecd65370506a7c204740 Mon Sep 17 00:00:00 2001 From: ThinkPadNL Date: Mon, 8 Aug 2016 17:06:27 +0200 Subject: [PATCH] Update autostart-systemd.markdown (#748) Small grep line added to make it easier to spot errors. --- source/getting-started/autostart-systemd.markdown | 5 +++++ 1 file changed, 5 insertions(+) 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' +```