We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e4e868 commit c4475adCopy full SHA for c4475ad
crates/boot/src/main.rs
@@ -385,7 +385,7 @@ fn efi_main() -> Status {
385
let result = run();
386
if let Err(ref error) = result {
387
// Print an error trace.
388
- error!("sprout encountered an error:");
+ error!("sprout encountered an error: {}", error);
389
for (index, stack) in error.chain().enumerate() {
390
error!("[{}]: {}", index, stack);
391
}
0 commit comments