diff options
-rw-r--r-- | curtin/commands/extract.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/curtin/commands/extract.py b/curtin/commands/extract.py index fc7749cb..206790e4 100644 --- a/curtin/commands/extract.py +++ b/curtin/commands/extract.py @@ -114,6 +114,7 @@ class LayeredSourceHandler(AbstractSourceHandler): def setup(self): self._tmpdir = tempfile.mkdtemp() + LOG.debug(f"Setting up Layered Source for stack {self.image_stack}") try: self._download() # Check that all images exists on disk and are not empty @@ -158,6 +159,7 @@ class TrivialSourceHandler(AbstractSourceHandler): self.path = path def setup(self): + LOG.debug(f"Setting up Trivial Source for stack {self.path}") return self.path def cleanup(self): |