1
0

Fix log output

This commit is contained in:
dump_stack() 2023-04-06 13:12:57 +00:00
parent fe3092371c
commit c353618c17
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC

View File

@ -533,7 +533,7 @@ func genRootfsImage(d dockerImageInfo, download bool) (rootfs string, err error)
rootfs = imagesPath + imageFile rootfs = imagesPath + imageFile
if !exists(rootfs) { if !exists(rootfs) {
if download { if download {
log.Print(imageFile, "not exists, start downloading...") log.Debug().Msgf("%v not exists, start downloading...", imageFile)
err = downloadImage(imagesPath, imageFile) err = downloadImage(imagesPath, imageFile)
} }
} }