Skip to content

Commit

Permalink
fix log display ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasLaPiana committed Feb 1, 2024
1 parent 1fcea52 commit 968f047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn display_logs(number: &i8) {
})
.collect();

for result in results.iter() {
for result in results.iter().rev() {
println!("\n> {} | {}", result.job_name, result.execution_time);
display_execution_results(result)
}
Expand Down

0 comments on commit 968f047

Please sign in to comment.