Change log level for System Bridge service handlers (#112175)

Change log level from info to debug for System Bridge service handlers
pull/112262/head
Aidan Timson 2024-03-04 15:54:58 +00:00 committed by GitHub
parent 03793d75f8
commit ce897b8645
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -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]
]