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); }