Skip to content

Commit

Permalink
fix: Update logging messages for TGI CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugoch committed Oct 1, 2024
1 parent 8a60d72 commit 50702f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ pub async fn run(run_config: RunConfiguration,
}
}
let _ = tx.send(Event::BenchmarkReportEnd);
info!("Benchmark finished");
if !run_config.interactive { // quit app if not interactive
let _ = stop_sender.send(());
}
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ async fn main() {
).await {
Ok(_) => {}
Err(e) => {
println!("Error: {:?}", e)
println!("Fatal: {:?}", e)
}
};
});
Expand Down

0 comments on commit 50702f0

Please sign in to comment.