Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Commit

Permalink
refactor: update logging level
Browse files Browse the repository at this point in the history
  • Loading branch information
hopeyen committed May 24, 2023
1 parent 549df19 commit 0866d6a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion benches/gossips.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ fn gossip_poi_bench(c: &mut Criterion) {
server_port: None,
log_format: String::from("pretty"),
persistence_file_path: None,
log_format: String::from("pretty"),
});
_ = black_box(CONFIG.set(Arc::new(SyncMutex::new(config))));

Expand Down
2 changes: 1 addition & 1 deletion src/operation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ pub async fn compare_poi(
);
}
Err(e) => {
warn!(err = tracing::field::debug(&e), "Compare handles");
trace!(err = tracing::field::debug(&e), "Compare handles");
compare_ops.push(Err(e.clone_with_inner()));
}
}
Expand Down

0 comments on commit 0866d6a

Please sign in to comment.