From 747d620596c41094a66a8ae1e39104bc05d90846 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Tue, 9 Mar 2021 12:02:14 +0100 Subject: Added some debugging. --- archinstall/lib/disk.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'archinstall') diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py index 3f51733a..f78907d7 100644 --- a/archinstall/lib/disk.py +++ b/archinstall/lib/disk.py @@ -189,8 +189,10 @@ class Partition(): raise DiskError(f'Could not find appropriate parent for encrypted partition {self}') def detect_inner_filesystem(self, password): + log(f'Trying to detect inner filesystem format on {self} (This might take a while)', level=LOG_LEVELS.Info) from .luks import luks2 with luks2(self, 'luksloop', password, auto_unmount=True) as unlocked_device: + print('Found:', unlocked_device.filesystem) return unlocked_device.filesystem def has_content(self): -- cgit v1.2.3-54-g00ecf