Added restart && journal, which I use all the time (#3795)

This commit is contained in:
Devon Peet 2017-10-27 01:34:29 -04:00 committed by Fabian Affolter
parent 081d0d4dd9
commit 39b30f6582

View File

@ -127,3 +127,10 @@ Because the log can scroll quite quickly, you can select to view only the error
```bash
$ sudo journalctl -f -u home-assistant@[your user] | grep -i 'error'
```
When working on Home Assitant, you can easily restart the system and then watch the log output by combining the above commands using `&&`
```bash
$ sudo systemctl restart home-assistant@[your user] && sudo journalctl -f -u home-assistant@[your user]
```