esphome-docs/components/logger.rst

142 lines
4.5 KiB
ReStructuredText
Raw Normal View History

2018-05-13 11:37:02 +02:00
Logger Component
================
2018-11-14 22:12:27 +01:00
.. seo::
:description: Instructions for setting up the central logging component in esphomelib.
:image: file-document-box.png
2018-11-14 22:12:27 +01:00
2018-05-13 11:37:02 +02:00
The logger component automatically logs all log messages through the
serial port and through MQTT topics. By default, all logs with a
severity higher than ``DEBUG`` will be shown. Decreasing the log level
can help with the performance of the application and memory size.
.. code-block:: yaml
2018-05-13 11:37:02 +02:00
# Example configuration entry
logger:
level: DEBUG
Configuration variables:
2018-08-24 22:44:01 +02:00
------------------------
2018-05-13 11:37:02 +02:00
- **baud_rate** (*Optional*, int): The baud rate to use for the serial
2018-08-27 13:21:30 +02:00
UART port. Defaults to ``115200``. Set to ``0`` to disable logging via UART.
2018-05-13 11:37:02 +02:00
- **tx_buffer_size** (*Optional*, string): The size of the buffer used
for log messages. Decrease this if youre having memory problems.
Defaults to 512.
- **level** (*Optional*, string): The global log level. Any log message
with a lower severity will not be shown. Defaults to DEBUG.
- **logs** (*Optional*, mapping): Manually set the log level for a
2018-06-01 18:10:00 +02:00
specific component or tag. See :ref:`Manual Log Levels for more
information <logger-manual_tag_specific_levels>`.
- **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation.
.. _logger-log_levels:
2018-05-13 11:37:02 +02:00
Log Levels
2018-08-24 22:44:01 +02:00
----------
2018-05-13 11:37:02 +02:00
Possible log levels are (sorted by severity):
- ``NONE``
2018-11-23 12:33:49 +01:00
- No messages are logged.
2018-05-13 11:37:02 +02:00
- ``ERROR``
2018-11-23 12:33:49 +01:00
- With this log level, only errors are logged. Errors are issues that prevent the ESP from working
correctly. Color: red
2018-05-13 11:37:02 +02:00
- ``WARN``
2018-11-23 12:33:49 +01:00
- With this log level, warnings and errors are logged. Warnings are issues like invalid readings from
sensors that esphomelib can recover from. Color: yellow
2018-05-13 11:37:02 +02:00
- ``INFO``
2018-11-23 12:33:49 +01:00
- With this log level, everything up to info messages are logged; so errors, warnings and info. Color: green
- ``DEBUG`` (**Default**)
- Everything up to this log level is logged. Debug messages include the current readings from a sensor
and status messages. Color: cyan
2018-05-13 11:37:02 +02:00
- ``VERBOSE``
2018-11-23 12:33:49 +01:00
- Like debug, but a few more messages that are usually deemed to be spam are also included. Color: grey
2018-05-14 21:15:49 +02:00
- ``VERY_VERBOSE``
2018-05-13 11:37:02 +02:00
2018-11-23 12:33:49 +01:00
- All internal messages are logged. Including all the data flowing through data buses like
i2c, spi or uart. Color: white
2018-06-01 18:10:00 +02:00
.. _logger-manual_tag_specific_levels:
2018-05-13 11:37:02 +02:00
Manual Tag-Specific Log Levels
2018-08-24 22:44:01 +02:00
------------------------------
2018-05-13 11:37:02 +02:00
If some component is spamming the logs and you want to manually set the
log level for it, first identify the tag of the log messages in question
and then disable them in your configuration.
Suppose we want to have verbose log messages globally, but the MQTT
client spams too much. In the following example, wed first see that the
tag of the MQTT client is ``mqtt.client`` (before the first colon) and
the tag for MQTT components is ``mqtt.component``.
2018-06-01 18:10:00 +02:00
.. figure:: images/logger-manual_log_level.png
2018-05-13 11:37:02 +02:00
Next, we can manually set the log levels in the configuration like this:
.. code-block:: yaml
2018-05-13 11:37:02 +02:00
logger:
level: VERBOSE
logs:
mqtt.component: DEBUG
mqtt.client: ERROR
Please note that the global log level determines what log messages are
saved in the binary. So for example a ``INFO`` global log message will
purge all ``DEBUG`` log statements from the binary in order to conserve
space. This however means that you cannot set tag-specific log levels
that have a lower severity than the global log level.
2018-10-20 15:19:31 +02:00
.. _logger-log_action:
``logger.log`` Action
---------------------
Print a formatted message to the logs.
In the ``format`` option, you can use ``printf``-style formatting (see :ref:`display-printf`).
.. code-block:: yaml
2018-10-20 15:19:31 +02:00
on_...:
then:
- logger.log: "Hello World"
# Formatted:
- logger.log:
format: "The temperature sensor reports value %.1f and humidity %.1f"
2019-01-13 15:49:06 +01:00
args: [ 'id(temperature_sensor).state', 'id(humidity_sensor).state' ]
2018-10-20 15:19:31 +02:00
Configuration options:
- **format** (**Required**, string): The format for the message in :ref:`printf-style <display-printf>`.
- **args** (*Optional*, list of :ref:`lambda <config-lambda>`): The optional arguments for the
format message.
- **level** (*Optional*, string): The :ref:`log level <logger-log_levels>` to print the message
with. Defaults to ``DEBUG``.
- **tag** (*Optional*, string): The tag (seen in front of the message in the logs) to print the message
with. Defaults to ``main``.
2018-06-01 18:10:00 +02:00
See Also
--------
2018-05-13 11:37:02 +02:00
- :apiref:`log_component.h`
- :ghedit:`Edit`
2018-10-12 16:33:22 +02:00
.. disqus::