Removed some debugging.
This commit is contained in:
parent
f031bb077c
commit
99c18d5d66
|
|
@ -166,9 +166,6 @@ class Partition():
|
|||
self.mountpoint = target
|
||||
|
||||
if not self.filesystem and autodetect_filesystem:
|
||||
print(f'Auto-detecting filesystem for: {path}')
|
||||
print('Mount information:', mount_information.get('fstype', None))
|
||||
print('Real device:', get_filesystem_type(path))
|
||||
if (fstype := mount_information.get('fstype', get_filesystem_type(path))):
|
||||
self.filesystem = fstype
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,6 @@ class Installer():
|
|||
|
||||
storage['session'] = self
|
||||
self.partitions = get_partitions_in_use(self.target)
|
||||
print(self.partitions)
|
||||
|
||||
def log(self, *args, level=LOG_LEVELS.Debug, **kwargs):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in New Issue