mirror of
https://github.com/romanz/electrs.git
synced 2025-02-23 06:45:26 +01:00
Fix log level during mempool sync interruption
https://github.com/romanz/electrs/pull/917#pullrequestreview-1736677655
This commit is contained in:
parent
b6271ba3af
commit
a01d58c35d
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue