From a01d58c35d2f6aaea7a479eb508404e7ff3affdf Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Fri, 17 Nov 2023 16:40:22 +0200 Subject: [PATCH] Fix log level during mempool sync interruption https://github.com/romanz/electrs/pull/917#pullrequestreview-1736677655 --- src/mempool.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mempool.rs b/src/mempool.rs index 2aba48e..90a1cd8 100644 --- a/src/mempool.rs +++ b/src/mempool.rs @@ -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