We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ea0a21 commit c10e4f0Copy full SHA for c10e4f0
node/src/manager/commands/prune.rs
@@ -354,6 +354,11 @@ pub async fn status(
354
));
355
};
356
println!("prune {deployment} (run #{run})");
357
+
358
+ if let (Some(errored_at), Some(error)) = (&state.errored_at, &state.error) {
359
+ println!(" error: {error}");
360
+ println!(" at: {}", fmt::date_time(errored_at));
361
+ }
362
println!(
363
" range: {} - {} ({} blocks, should keep {} blocks)",
364
state.first_block,
0 commit comments