diff --git a/supervisor/store/__init__.py b/supervisor/store/__init__.py index 787e560d1..0fc2ef52b 100644 --- a/supervisor/store/__init__.py +++ b/supervisor/store/__init__.py @@ -75,8 +75,6 @@ class StoreManager(CoreSysAttributes, FileConfiguration): async def load(self) -> None: """Start up add-on management.""" - await self.data.update() - # Init custom repositories and load add-ons await self.update_repositories( self._data[ATTR_REPOSITORIES], add_with_errors=True diff --git a/supervisor/store/git.py b/supervisor/store/git.py index f0bb3a7b0..2c2b86aaf 100644 --- a/supervisor/store/git.py +++ b/supervisor/store/git.py @@ -97,7 +97,9 @@ class GitRepo(CoreSysAttributes): } try: - _LOGGER.info("Cloning add-on %s repository", self.url) + _LOGGER.info( + "Cloning add-on %s repository from %s", self.path, self.url + ) self.repo = await self.sys_run_in_executor( ft.partial( git.Repo.clone_from, self.url, str(self.path), **git_args @@ -128,7 +130,7 @@ class GitRepo(CoreSysAttributes): return async with self.lock: - _LOGGER.info("Update add-on %s repository", self.url) + _LOGGER.info("Update add-on %s repository from %s", self.path, self.url) try: branch = self.repo.active_branch.name