From c4475ad42d070c9cc46e0f1b85870d6aacbabff5 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Thu, 6 Nov 2025 13:04:05 -0500 Subject: [PATCH] fix(boot): ensure top-level error is printed --- crates/boot/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/boot/src/main.rs b/crates/boot/src/main.rs index a2c3de4..af1365b 100644 --- a/crates/boot/src/main.rs +++ b/crates/boot/src/main.rs @@ -385,7 +385,7 @@ fn efi_main() -> Status { let result = run(); if let Err(ref error) = result { // Print an error trace. - error!("sprout encountered an error:"); + error!("sprout encountered an error: {}", error); for (index, stack) in error.chain().enumerate() { error!("[{}]: {}", index, stack); }