Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-04-16 11:48:24 +0200
committerAnton Hvornum <anton@hvornum.se>2021-04-16 11:48:24 +0200
commita7c0142099066791d48240815c47c07772f9e025 (patch)
treeb594661ce257f0e474750ff36fb94e34a23dc337 /examples
parent65c6807cc99a4c5bbd1ec8097b2472669475cf7d (diff)
Adding debug data to the log. It will now contain lsblk before and after the installation to help with detecting any potential information. Also removed a traceback log that was for debugging purposes.
Diffstat (limited to 'examples')
-rw-r--r--examples/guided.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/examples/guided.py b/examples/guided.py
index c0d22023..dc638d26 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -7,6 +7,9 @@ if hasUEFI() is False:
archinstall.log("ArchInstall currently only supports machines booted with UEFI.\nMBR & GRUB support is coming in version 2.2.0!", fg="red", level=archinstall.LOG_LEVELS.Error)
exit(1)
+# For support reasons, we'll log the disk layout pre installation to match against post-installation layout
+archinstall.log(f"Disk states before installing: {archinstall.disk_layouts()}", level=archinstall.LOG_LEVELS.Debug)
+
def ask_user_questions():
"""
First, we'll ask the user for a bunch of user input.
@@ -357,6 +360,8 @@ def perform_installation(mountpoint):
except:
pass
-ask_user_questions()
-perform_installation_steps()
+ # For support reasons, we'll log the disk layout post installation (crash or no crash)
+ archinstall.log(f"Disk states after installing: {archinstall.disk_layouts()}", level=archinstall.LOG_LEVELS.Debug)
+ask_user_questions()
+perform_installation_steps() \ No newline at end of file