From ce897b864508270dc94dc672e5c5759fe01c51ba Mon Sep 17 00:00:00 2001 From: Aidan Timson Date: Mon, 4 Mar 2024 15:54:58 +0000 Subject: [PATCH] Change log level for System Bridge service handlers (#112175) Change log level from info to debug for System Bridge service handlers --- homeassistant/components/system_bridge/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/system_bridge/__init__.py b/homeassistant/components/system_bridge/__init__.py index e927a05b96f..d999ed8a9f3 100644 --- a/homeassistant/components/system_bridge/__init__.py +++ b/homeassistant/components/system_bridge/__init__.py @@ -196,7 +196,7 @@ async def async_setup_entry( async def handle_open_path(call: ServiceCall) -> None: """Handle the open path service call.""" - _LOGGER.info("Open: %s", call.data) + _LOGGER.debug("Open: %s", call.data) coordinator: SystemBridgeDataUpdateCoordinator = hass.data[DOMAIN][ call.data[CONF_BRIDGE] ] @@ -206,7 +206,7 @@ async def async_setup_entry( async def handle_power_command(call: ServiceCall) -> None: """Handle the power command service call.""" - _LOGGER.info("Power command: %s", call.data) + _LOGGER.debug("Power command: %s", call.data) coordinator: SystemBridgeDataUpdateCoordinator = hass.data[DOMAIN][ call.data[CONF_BRIDGE] ] @@ -217,7 +217,7 @@ async def async_setup_entry( async def handle_open_url(call: ServiceCall) -> None: """Handle the open url service call.""" - _LOGGER.info("Open: %s", call.data) + _LOGGER.debug("Open: %s", call.data) coordinator: SystemBridgeDataUpdateCoordinator = hass.data[DOMAIN][ call.data[CONF_BRIDGE] ]