1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-20 02:18:59 +00:00

Log manifest fetch failures at warning level

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 <noreply@anthropic.com>
This commit is contained in:
Stefan Agner
2025-12-05 15:54:21 +01:00
parent 1949eb69ba
commit faec195b88

View File

@@ -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."""