Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
enable log
Browse files Browse the repository at this point in the history
  • Loading branch information
xx01cyx committed May 1, 2024
1 parent 8ce14fb commit a0f5ea1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ use std::path::PathBuf;
async fn main() {
// benchmark_sync().await;
// benchmark_parallel().await;
let _ = env_logger::builder()
.filter_level(log::LevelFilter::Info)
.try_init();

let trace = parse_trace(PathBuf::from("traces/trace_1m.csv")).unwrap();
run_trace(trace, &utils::setup_client_1).await;
let trace = parse_trace(PathBuf::from("traces/trace_100m.csv")).unwrap();
Expand Down

0 comments on commit a0f5ea1

Please sign in to comment.