From a8c9ec205a6c7ad88783f3930c108d5b9eebad13 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 1 Apr 2017 12:43:21 +0200 Subject: [PATCH] Update --- source/_components/logger.markdown | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/source/_components/logger.markdown b/source/_components/logger.markdown index 61bee676a70..72e7b2f0f7a 100644 --- a/source/_components/logger.markdown +++ b/source/_components/logger.markdown @@ -67,5 +67,9 @@ data: homeassistant.components: warning homeassistant.components.media_player.yamaha: debug ``` -The log information is put into the file /home/pi/.homeassistant/home-assistant.log and you can read it with cat or follow it dynamicly with tail -f: -tail -f /home/pi/.homeassistant/home-assistant.log + +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 dynamicly with `tail -f`. If you are a Rasbian user then like the example below: + +```bash +$ tail -f /home/pi/.homeassistant/home-assistant.log +```