Skip to content

Commit

Permalink
Removed the only dbg! macro in firewood (#539)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkuris authored Feb 20, 2024
1 parent 90aa00a commit 01eb6e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firewood/benches/hashops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ fn bench_db<const N: usize>(criterion: &mut Criterion) {
batch_ops
},
|batch_ops| async {
let db_path = dbg!(std::env::temp_dir());
let db_path = std::env::temp_dir();
let db_path = db_path.join("benchmark_db");
let cfg =
DbConfig::builder().wal(WalConfig::builder().max_revisions(10).build());
Expand Down

0 comments on commit 01eb6e0

Please sign in to comment.