diff --git a/source/_integrations/logger.markdown b/source/_integrations/logger.markdown index 3263aeb135a1..f5d1b6cb734b 100644 --- a/source/_integrations/logger.markdown +++ b/source/_integrations/logger.markdown @@ -173,23 +173,11 @@ data: The log information can be viewed and downloaded from {% my logs title="**Settings** > **System** > **Logs**" %} +### Viewing logs on Container installations -### Supervised installations - -On {% term "Home Assistant Supervisor" %} based installations, such as the -{% term "Home Assistant Operating System" %} the logs can also be viewed -by logging in through the [SSH add-on](/common-tasks/os/#installing-and-using-the-ssh-add-on) and running the following command: - -```bash -ha core logs -``` - -### Non-Supervised installations - -For installations without the {% term "Home Assistant Supervisor" %} -the log information is 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 +For {% term "Home Assistant Container" %} installations, the log information is stored in the +[configuration directory](/docs/configuration/) as `home-assistant.log`. +You can read it with the command-line tool `cat` or follow it dynamically with `tail -f`. You can use the example below, when logged in through the [SSH add-on](/common-tasks/os/#installing-and-using-the-ssh-add-on): @@ -198,11 +186,11 @@ You can use the example below, when logged in through the [SSH add-on](/common-t tail -f /config/home-assistant.log ``` -On Docker you can use your host command line directly - follow the logs dynamically with: +On Docker, you can use your host command line directly. Follow the logs dynamically with the following command: ```bash # follow the log dynamically docker logs --follow MY_CONTAINER_ID ``` -To see other options use `--help` instead, or simply leave with no options to display the entire log. +To see other options, use `--help` instead, or simply leave with no options to display the entire log.