From f0282874f866a594a525323deb5e667e736296e7 Mon Sep 17 00:00:00 2001 From: gryf Date: Sun, 12 Feb 2023 11:45:50 +0100 Subject: [PATCH] Added information regarding url for the dl image --- box.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/box.py b/box.py index 029288d..0ef6c6f 100755 --- a/box.py +++ b/box.py @@ -978,7 +978,8 @@ class Image: return True fname = os.path.join(CACHE_DIR, self._img_fname) - LOG.header('Downloading image %s', self._img_fname) + LOG.header('Downloading image %s from %s', self._img_fname, + self._img_url) Run(['wget', '-q', self._img_url, '-O', fname]) if not self._checksum():