mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-12-24 04:19:03 +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:
@@ -232,7 +232,7 @@ class DockerInterface(JobGroup, ABC):
|
|||||||
manifest.total_size,
|
manifest.total_size,
|
||||||
)
|
)
|
||||||
except (aiohttp.ClientError, TimeoutError) as err:
|
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:
|
async def process_pull_event(event: PullLogEntry) -> None:
|
||||||
"""Process pull event and update job progress."""
|
"""Process pull event and update job progress."""
|
||||||
|
|||||||
Reference in New Issue
Block a user