Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/installer.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-12-07 19:28:36 +0100
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-12-07 19:28:36 +0100
commit584219e8476d131a8345707063afa469fa2dfe90 (patch)
treecc073b622e788b4bf27f2ee5b0828a8198817aa1 /archinstall/lib/installer.py
parentc3336dcb7057e365af68813bd840c6fdee2945f3 (diff)
Updated debug log output
Diffstat (limited to 'archinstall/lib/installer.py')
-rw-r--r--archinstall/lib/installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index e566e308..51ea971f 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -116,7 +116,7 @@ class Installer():
return use_mirrors(mirrors, destination=f'{self.mountpoint}/etc/pacman.d/mirrorlist')
def genfstab(self, flags='-pU'):
- self.log(f"Updating {self.mountpoint}/etc/fstab")
+ self.log(f"Updating {self.mountpoint}/etc/fstab", level=LOG_LEVELS.Info)
o = b''.join(sys_command(f'/usr/bin/genfstab {flags} {self.mountpoint} >> {self.mountpoint}/etc/fstab'))