Skip to content
Snippets Groups Projects
Commit 73cf4908 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Add the target directory when logging which directory we are extracting containers to.

parent 9d9520b2
No related branches found
No related tags found
No related merge requests found
Pipeline #237964 failed
......@@ -88,13 +88,16 @@ class ArchiveMember(File):
@property
def path(self):
if self._path is None:
logger.debug(
"Unpacking %s from %s", self._name, self.container.source.name
)
assert self._temp_dir is None
self._temp_dir = get_temporary_directory(
suffix=self.container.__class__.__name__
)
logger.debug(
"Unpacking %s from %s to %s",
self._name,
self.container.source.name,
self._temp_dir.name,
)
with profile("container_extract", self.container):
self._path = self.container.extract(
self._name, self._temp_dir.name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment