Add Hass.io log location (#3599)

To aid debugging Hass.io logs
This commit is contained in:
Phill Price 2017-10-13 11:19:57 +01:00 committed by Fabian Affolter
parent 4f7dd6b400
commit 7f5be9a0b2

View File

@ -68,8 +68,16 @@ data:
homeassistant.components.media_player.yamaha: debug
```
The log information are stored in the [configuration directory](/docs/configuration/) as `home-assistant.log` and you can read it with the command-line tool `cat` or follow it dynamically with `tail -f`. If you are a Hassbian user you can use the example below:
The log information are stored in the [configuration directory](/docs/configuration/) as `home-assistant.log` and you can read it with the command-line tool `cat` or follow it dynamically with `tail -f`.
If you are a Hassbian user you can use the example below:
```bash
$ tail -f /home/homeassistant/.homeassistant/home-assistant.log
```
If you are a Hass.io user you can use the example below, whenlogged in through the ssh addon:
```bash
$ tail -f /config/home-assistant.log
```