Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2022-10-12 15:08:48 +0200
committerGitHub <noreply@github.com>2022-10-12 15:08:48 +0200
commit4addd2d7cbc015ec19c155d1d4a4bb997c05db00 (patch)
treed93b504dceea9024b6e515492c0b1f6784f4b0ef /archinstall/lib/disk
parent14be423a6cf3ae6f9ac25c4da138911efc59f7fd (diff)
Removed debug output
Diffstat (limited to 'archinstall/lib/disk')
-rw-r--r--archinstall/lib/disk/filesystem.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/archinstall/lib/disk/filesystem.py b/archinstall/lib/disk/filesystem.py
index c8eaf0be..af5879aa 100644
--- a/archinstall/lib/disk/filesystem.py
+++ b/archinstall/lib/disk/filesystem.py
@@ -261,9 +261,6 @@ class Filesystem:
new_partition_uuids = [partition.part_uuid for partition in self.blockdevice.partitions.values()]
new_partuuid_set = (set(previous_partuuids) ^ set(new_partition_uuids))
- log(f'Old partition set: {previous_partuuids}', level=logging.INFO, fg="teal")
- log(f'New partition set: {new_partition_uuids}', level=logging.INFO, fg="teal")
-
if len(new_partuuid_set) and (new_partuuid := new_partuuid_set.pop()):
try:
return self.blockdevice.get_partition(partuuid=new_partuuid)