From faec195b88ba30392a4e9702fb21c834c8d64b2f Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Fri, 5 Dec 2025 15:54:21 +0100 Subject: [PATCH] Log manifest fetch failures at warning level MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Users will notice degraded progress tracking when manifest fetch fails, so log at warning level to help diagnose issues. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- supervisor/docker/interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/docker/interface.py b/supervisor/docker/interface.py index d9123772b..0df4951e3 100644 --- a/supervisor/docker/interface.py +++ b/supervisor/docker/interface.py @@ -232,7 +232,7 @@ class DockerInterface(JobGroup, ABC): manifest.total_size, ) except (aiohttp.ClientError, TimeoutError) as err: - _LOGGER.debug("Could not fetch manifest for progress: %s", err) + _LOGGER.warning("Could not fetch manifest for progress: %s", err) async def process_pull_event(event: PullLogEntry) -> None: """Process pull event and update job progress."""