From 023d6825db9eed74c789810dc694e5e855f460d7 Mon Sep 17 00:00:00 2001 From: c0ffeeca7 <38767475+c0ffeeca7@users.noreply.github.com> Date: Tue, 13 Jun 2023 15:16:48 +0200 Subject: [PATCH] Logger integration: replace term component by integration (#27794) --- source/_integrations/logger.markdown | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/_integrations/logger.markdown b/source/_integrations/logger.markdown index edd69d1c10f..6186d807cda 100644 --- a/source/_integrations/logger.markdown +++ b/source/_integrations/logger.markdown @@ -25,7 +25,7 @@ logger: The log severity level is `warning` if the logger integration is not enabled in `configuration.yaml`. To log all messages and ignore events lower than critical for specified -components: +integrations: ```yaml # Example configuration.yaml entry @@ -37,7 +37,7 @@ logger: ``` To ignore all messages lower than critical and log event for specified -components: +integrations: ```yaml # Example configuration.yaml entry @@ -59,7 +59,7 @@ logger: # log level for SmartThings lights homeassistant.components.smartthings.light: info - # log level for a custom component + # log level for a custom integration custom_components.my_integration: debug # log level for the `aiohttp` Python package @@ -85,7 +85,7 @@ where **namespace** is the ** currently logging. type: map keys: '<component_namespace>': - description: Logger namespace of the component. See [log_level](#log-levels). + description: Logger namespace of the integration. See [log_level](#log-levels). type: string filters: description: Regular Expression logging filters. @@ -93,7 +93,7 @@ where **namespace** is the ** currently logging. type: map keys: '<component_namespace>': - description: Logger namespace of the component and a list of Regular Expressions. See [Log Filters](#log-filters). + description: Logger namespace of the integration and a list of Regular Expressions. See [Log Filters](#log-filters). type: list {% endconfiguration %}