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

Commit

Permalink
enable logging
Browse files Browse the repository at this point in the history
  • Loading branch information
xx01cyx committed May 1, 2024
1 parent f98a255 commit 958df17
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ use std::path::PathBuf;

#[tokio::main]
async fn main() {
let _ = env_logger::builder()
.filter_level(log::LevelFilter::Info)
.is_test(true)
.try_init();

// benchmark_sync().await;
// benchmark_parallel().await;
let trace = parse_trace(PathBuf::from("traces/trace_1m.csv")).unwrap();
Expand Down

0 comments on commit 958df17

Please sign in to comment.