From e94e897ba1795129045f2b1673fa34fd36483751 Mon Sep 17 00:00:00 2001 From: Brian J King Date: Thu, 20 Apr 2017 01:10:49 -0500 Subject: [PATCH] Update typos, path fix, & grammar in logger.markdown (#2457) * Fix path for `tail -f ` for reading `home-assistant.log` * Fix typo (spelling) * Fix sentence structure regarding using the `tail` command. --- source/_components/logger.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/logger.markdown b/source/_components/logger.markdown index 72e7b2f0f7a..09cb599aca5 100644 --- a/source/_components/logger.markdown +++ b/source/_components/logger.markdown @@ -68,8 +68,8 @@ 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 dynamicly with `tail -f`. If you are a Rasbian user then like 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/pi/.homeassistant/home-assistant.log +$ tail -f /home/homeassistant/.homeassistant/home-assistant.log ```