mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-05 18:48:59 +00:00

* e.g. to e.g., and proper case for Home Assistant * Instructions how to -> Instructions on how to
84 lines
2.1 KiB
Markdown
84 lines
2.1 KiB
Markdown
---
|
|
layout: page
|
|
title: "Logger"
|
|
description: "Instructions on how to enable the logger component for Home Assistant."
|
|
date: 2015-11-12 17:00
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: home-assistant.png
|
|
ha_category: "Utility"
|
|
---
|
|
|
|
The logger component lets you define the level of logging activities in Home Assistant.
|
|
|
|
To enable the logger in your installation, add the following to your `configuration.yaml` file:
|
|
|
|
To have a full log and log everything only this entry is needed (without any qualifier):
|
|
```yaml
|
|
logger:
|
|
```
|
|
To log all messages and ignore events lower than critical for specified components.
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
logger:
|
|
default: info
|
|
logs:
|
|
homeassistant.components.device_tracker: critical
|
|
homeassistant.components.camera: critical
|
|
```
|
|
|
|
To ignore all messages lower than critical and log event for specified components.
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
logger:
|
|
default: critical
|
|
logs:
|
|
homeassistant.components: info
|
|
homeassistant.components.rfxtrx: debug
|
|
homeassistant.components.device_tracker: critical
|
|
homeassistant.components.camera: critical
|
|
```
|
|
|
|
Possible log severities are:
|
|
|
|
- critical
|
|
- fatal
|
|
- error
|
|
- warning
|
|
- warn
|
|
- info
|
|
- debug
|
|
- notset
|
|
|
|
### {% linkable_title Service `set_level` %}
|
|
|
|
You can alter log level for one or several components using the service
|
|
``logger.set_level``. It accepts the same format as ``logs`` in the configuration.
|
|
|
|
An example call might look like this:
|
|
|
|
```yaml
|
|
service: logger.set_level
|
|
data:
|
|
homeassistant.components: warning
|
|
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:
|
|
|
|
```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
|
|
```
|