diff --git a/custom_components/file_restore/__init__.py b/custom_components/file_restore/__init__.py index bd2681d..fab687d 100644 --- a/custom_components/file_restore/__init__.py +++ b/custom_components/file_restore/__init__.py @@ -13,7 +13,6 @@ from homeassistant.config_entries import SOURCE_IMPORT from homeassistant.helpers import discovery from homeassistant.util import Throttle -from integrationhelper.const import CC_STARTUP_VERSION from .sensor import FileSensor from .const import ( VERSION, @@ -25,9 +24,7 @@ _LOGGER = logging.getLogger(__name__) async def async_setup(hass, config): - _LOGGER.info( - CC_STARTUP_VERSION.format(name=DOMAIN, version=VERSION, issue_link=ISSUE_URL) - ) + _LOGGER.info("Set up of integration %s, version %s, in case of issue open ticket at %s", DOMAIN, VERSION, ISSUE_URL) return True async def async_setup_entry(hass, config_entry):