Skip to content

Commit

Permalink
replacing logger.raw with logger.info for image download intro
Browse files Browse the repository at this point in the history
  • Loading branch information
ShutdownRepo committed Oct 21, 2023
1 parent a0d5059 commit ee6a85f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exegol/utils/DockerUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,8 +447,8 @@ def downloadImage(cls, image: ExegolImage, install_mode: bool = False) -> bool:
logger.info(f"{'Installing' if install_mode else 'Updating'} exegol image : {image.getName()}")
name = image.updateCheck()
if name is not None:
logger.raw(f"[bold blue][*][/bold blue] Pulling compressed image, starting a [cyan1]{image.getDownloadSize()}[/cyan1] download :satellite:{os.linesep}", level=logging.INFO, markup=True, emoji=True)
logger.raw(f"[bold blue][*][/bold blue] Once downloaded and uncompressed, the image will take [cyan1]~{image.getRealSizeRaw()}[/cyan1] on disk :floppy_disk:{os.linesep}", level=logging.INFO, markup=True, emoji=True)
logger.info(f"Pulling compressed image, starting a [cyan1]~{image.getDownloadSize()}[/cyan1] download :satellite:")
logger.info(f"Once downloaded and uncompressed, the image will take [cyan1]~{image.getRealSizeRaw()}[/cyan1] on disk :floppy_disk:")
logger.debug(f"Downloading {ConstantConfig.IMAGE_NAME}:{name} ({image.getArch()})")
try:
ExegolTUI.downloadDockerLayer(
Expand Down

0 comments on commit ee6a85f

Please sign in to comment.