From 38e31e328c2c7829cf2a3a1cbd4b09911a198a92 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 19 Oct 2025 14:46:25 -1000 Subject: [PATCH] wip --- esphome/platformio_api.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/esphome/platformio_api.py b/esphome/platformio_api.py index 9c5c08e86d..ee515a171f 100644 --- a/esphome/platformio_api.py +++ b/esphome/platformio_api.py @@ -77,6 +77,10 @@ def patch_file_downloader(): _LOGGER.debug("[GitHub Cache] This is a GitHub URL, checking cache...") self._esphome_use_cache = cache.get_cached_path(url, check_updates=True) if self._esphome_use_cache: + _LOGGER.info( + "Found %s in cache, will restore instead of downloading", + Path(url.split("?")[0]).name, + ) _LOGGER.debug( "[GitHub Cache] Found in cache: %s", self._esphome_use_cache )