From 523998f8a11353fa360a698179eb773efd59f93b Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 5 Sep 2021 20:53:12 -0700 Subject: [PATCH] Drop logger service fields because keys are dynamic (#55750) --- homeassistant/components/logger/services.yaml | 58 ------------------- 1 file changed, 58 deletions(-) diff --git a/homeassistant/components/logger/services.yaml b/homeassistant/components/logger/services.yaml index 1995a027b0b..5930a4e5d9e 100644 --- a/homeassistant/components/logger/services.yaml +++ b/homeassistant/components/logger/services.yaml @@ -18,61 +18,3 @@ set_default_level: set_level: name: Set level description: Set log level for integrations. - fields: - homeassistant.core: - name: Home Assistant Core - description: - "Example on how to change the logging level for a Home Assistant Core - integrations." - selector: - select: - options: - - 'debug' - - 'critical' - - 'error' - - 'fatal' - - 'info' - - 'warn' - - 'warning' - homeassistant.components.mqtt: - name: Home Assistant components mqtt - description: - "Example on how to change the logging level for an Integration." - selector: - select: - options: - - 'debug' - - 'critical' - - 'error' - - 'fatal' - - 'info' - - 'warn' - - 'warning' - custom_components.my_integration: - name: Custom components "my_integation" - description: - "Example on how to change the logging level for a Custom Integration." - selector: - select: - options: - - 'debug' - - 'critical' - - 'error' - - 'fatal' - - 'info' - - 'warn' - - 'warning' - aiohttp: - name: aioHttp - description: - "Example on how to change the logging level for a Python module." - selector: - select: - options: - - 'debug' - - 'critical' - - 'error' - - 'fatal' - - 'info' - - 'warn' - - 'warning'