Skip to content

Commit c4475ad

Browse files
committed
fix(boot): ensure top-level error is printed
1 parent 5e4e868 commit c4475ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/boot/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ fn efi_main() -> Status {
385385
let result = run();
386386
if let Err(ref error) = result {
387387
// Print an error trace.
388-
error!("sprout encountered an error:");
388+
error!("sprout encountered an error: {}", error);
389389
for (index, stack) in error.chain().enumerate() {
390390
error!("[{}]: {}", index, stack);
391391
}

0 commit comments

Comments
 (0)