From c1ddd8383da037501617a8b33ffcea28eaaa2cf0 Mon Sep 17 00:00:00 2001 From: aunefyren Date: Mon, 5 Feb 2024 14:25:15 +0100 Subject: [PATCH] Update __init__.py --- custom_components/bluesound_alt/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/custom_components/bluesound_alt/__init__.py b/custom_components/bluesound_alt/__init__.py index b982932..b3ccc41 100644 --- a/custom_components/bluesound_alt/__init__.py +++ b/custom_components/bluesound_alt/__init__.py @@ -3,8 +3,13 @@ from homeassistant.core import HomeAssistant from homeassistant.helpers.entity_platform import AddEntitiesCallback from homeassistant.config_entries import ConfigEntry +import logging + +_LOGGER = logging.getLogger(__name__) async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: """Set up a config entry for Bluesound.""" + _LOGGER.debug("Starting entry: %s", entry) + await async_setup_platform(hass, entry, AddEntitiesCallback, None) return True \ No newline at end of file