Skip to content

Commit

Permalink
chore(kdn): print results to terminal in happy path
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell committed Aug 20, 2024
1 parent 6489815 commit 4f2cff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/kdn/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ impl Cli {
let pipeline = crate::pipeline::new_runner_pipeline(fixture.clone()).await?;
match crate::runner::run(pipeline, fixture).await {
Ok(_) => {
info!(target: "exec", "[PASS] {}", name);
println!("[PASS] {}", name);
Ok(())
}
Err(e) => {
Expand Down

0 comments on commit 4f2cff3

Please sign in to comment.