diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-08-21 09:28:01 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-08-21 09:28:01 +0200 |
commit | 88399507583958f60840fd96556b2d437497bcb3 (patch) | |
tree | 52fc711d87e1b98590df55aea50dc080ef32d76e /src | |
parent | 19e8825805cfd0d951a9c3657726fdd2855b639f (diff) |
live: report that up-to-date image already exists in cachev1.3.2-15
Diffstat (limited to 'src')
-rw-r--r-- | src/live/ogOperations.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/live/ogOperations.py b/src/live/ogOperations.py index 2ae44aa..978410f 100644 --- a/src/live/ogOperations.py +++ b/src/live/ogOperations.py @@ -191,6 +191,7 @@ class OgLiveOperations: dst = f'{OG_CACHE_IMAGE_PATH}{image_name}.img' if (os.path.exists(dst) and tip_check_csum(repo, image_name)): + logging.info(f'Found up-to-date image {image_name}.img in cache') return try: |