mirror of
https://github.com/home-assistant/core.git
synced 2025-07-28 07:37:34 +00:00
Change log level for System Bridge service handlers (#112175)
Change log level from info to debug for System Bridge service handlers
This commit is contained in:
parent
03793d75f8
commit
ce897b8645
@ -196,7 +196,7 @@ async def async_setup_entry(
|
|||||||
|
|
||||||
async def handle_open_path(call: ServiceCall) -> None:
|
async def handle_open_path(call: ServiceCall) -> None:
|
||||||
"""Handle the open path service call."""
|
"""Handle the open path service call."""
|
||||||
_LOGGER.info("Open: %s", call.data)
|
_LOGGER.debug("Open: %s", call.data)
|
||||||
coordinator: SystemBridgeDataUpdateCoordinator = hass.data[DOMAIN][
|
coordinator: SystemBridgeDataUpdateCoordinator = hass.data[DOMAIN][
|
||||||
call.data[CONF_BRIDGE]
|
call.data[CONF_BRIDGE]
|
||||||
]
|
]
|
||||||
@ -206,7 +206,7 @@ async def async_setup_entry(
|
|||||||
|
|
||||||
async def handle_power_command(call: ServiceCall) -> None:
|
async def handle_power_command(call: ServiceCall) -> None:
|
||||||
"""Handle the power command service call."""
|
"""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][
|
coordinator: SystemBridgeDataUpdateCoordinator = hass.data[DOMAIN][
|
||||||
call.data[CONF_BRIDGE]
|
call.data[CONF_BRIDGE]
|
||||||
]
|
]
|
||||||
@ -217,7 +217,7 @@ async def async_setup_entry(
|
|||||||
|
|
||||||
async def handle_open_url(call: ServiceCall) -> None:
|
async def handle_open_url(call: ServiceCall) -> None:
|
||||||
"""Handle the open url service call."""
|
"""Handle the open url service call."""
|
||||||
_LOGGER.info("Open: %s", call.data)
|
_LOGGER.debug("Open: %s", call.data)
|
||||||
coordinator: SystemBridgeDataUpdateCoordinator = hass.data[DOMAIN][
|
coordinator: SystemBridgeDataUpdateCoordinator = hass.data[DOMAIN][
|
||||||
call.data[CONF_BRIDGE]
|
call.data[CONF_BRIDGE]
|
||||||
]
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user