Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-03-29 15:57:31 +0200
committerAnton Hvornum <anton@hvornum.se>2021-03-29 15:57:31 +0200
commit39cb0b94d94c3f4fa0dec4002e8d9221fb28c753 (patch)
tree32e57c225f5d3d355821983715832d7a39ecfaad /archinstall
parent0e269752479ff68fba73d4c04ea0f28718f945cd (diff)
Moved some debugging to catch more variable settings.
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/disk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py
index 3efee8b4..7bc09a0b 100644
--- a/archinstall/lib/disk.py
+++ b/archinstall/lib/disk.py
@@ -190,6 +190,7 @@ class Partition():
@encrypted.setter
def encrypted(self, value :bool):
log(f'Marking {self} as encrypted', level=LOG_LEVELS.Debug)
+ log(f"Callstrack when marking the partition: {''.join(traceback.format_stack())}", level=LOG_LEVELS.Debug)
self._encrypted = value
@property
@@ -453,7 +454,6 @@ class Filesystem():
if encrypt_root_partition:
log(f"Marking partition {self.blockdevice.partition[1]} as encrypted.", level=LOG_LEVELS.Debug)
- log(f"Callstrack when marking the partition: {''.join(traceback.format_stack())}", level=LOG_LEVELS.Debug)
self.blockdevice.partition[1].encrypted = True