From 3444c1242c2f3c3bf5f433fdef3897cfa54bb78d Mon Sep 17 00:00:00 2001 From: GroovieGermanikus Date: Mon, 12 Feb 2024 16:48:30 +0100 Subject: [PATCH] log tx info batch size --- src/postgres.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/postgres.rs b/src/postgres.rs index ddd8043..0a975a4 100644 --- a/src/postgres.rs +++ b/src/postgres.rs @@ -1328,7 +1328,7 @@ impl Postgres { } if !txs_to_store.is_empty() { - debug!("saving transaction infos for {} txs", txs_to_store.len()); + info!("saving transaction infos for {} txs", txs_to_store.len()); let batches = txs_to_store .iter() .filter_map(|key| map_of_transaction.remove(key))