diff --git a/homeassistant/components/input_boolean/__init__.py b/homeassistant/components/input_boolean/__init__.py index 88fe94eac48..f123d6d3297 100644 --- a/homeassistant/components/input_boolean/__init__.py +++ b/homeassistant/components/input_boolean/__init__.py @@ -95,7 +95,7 @@ async def async_setup(hass: HomeAssistantType, config: ConfigType) -> bool: storage_collection = InputBooleanStorageCollection( Store(hass, STORAGE_VERSION, STORAGE_KEY), - logging.getLogger(f"{__name__}_storage_collection"), + logging.getLogger(f"{__name__}.storage_collection"), id_manager, ) collection.attach_entity_component_collection( diff --git a/homeassistant/components/tag/__init__.py b/homeassistant/components/tag/__init__.py index 968b74e226d..01b283bb778 100644 --- a/homeassistant/components/tag/__init__.py +++ b/homeassistant/components/tag/__init__.py @@ -95,7 +95,7 @@ async def async_setup(hass: HomeAssistant, config: dict): id_manager = TagIDManager() hass.data[DOMAIN][TAGS] = storage_collection = TagStorageCollection( Store(hass, STORAGE_VERSION, STORAGE_KEY), - logging.getLogger(f"{__name__}_storage_collection"), + logging.getLogger(f"{__name__}.storage_collection"), id_manager, ) await storage_collection.async_load() diff --git a/homeassistant/components/zone/__init__.py b/homeassistant/components/zone/__init__.py index 2a7c3f01a27..5f65f1e9596 100644 --- a/homeassistant/components/zone/__init__.py +++ b/homeassistant/components/zone/__init__.py @@ -188,7 +188,7 @@ async def async_setup(hass: HomeAssistant, config: Dict) -> bool: storage_collection = ZoneStorageCollection( storage.Store(hass, STORAGE_VERSION, STORAGE_KEY), - logging.getLogger(f"{__name__}_storage_collection"), + logging.getLogger(f"{__name__}.storage_collection"), id_manager, ) collection.attach_entity_component_collection(