Skip to content

Commit

Permalink
Fix log level during mempool sync interruption
Browse files Browse the repository at this point in the history
  • Loading branch information
romanz committed Nov 17, 2023
1 parent b6271ba commit a01d58c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mempool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ impl Mempool {
let mut added = 0;
for chunk in to_add.chunks(100) {
if exit_flag.poll().is_err() {
warn!("interrupted while syncing mempool");
info!("interrupted while syncing mempool");
return;
}
let entries: Vec<_> = chunk
Expand Down

0 comments on commit a01d58c

Please sign in to comment.