1
0

make snapshot stdout more readable

This commit is contained in:
2025-10-25 10:00:31 -04:00
parent c479a86f29
commit cdfbc7e55f

View File

@@ -114,7 +114,7 @@ async def save_image_async(image, filepath, vm_name, vm_data, current_hash):
image.save, filepath, format="WEBP", quality=65, method=6, minimize_size=True
)
vm_data["last_frame_hash"] = current_hash
log.info(f"Saved snapshot of {vm_name} to {filepath}")
log.info(f"Saved snapshot of {vm_name} ({datetime.now(timezone.utc).strftime('%H:%M:%S')} UTC)")
except Exception as e:
log.error(f"Failed to save snapshot for {vm_name}: {e}")