From 3828eda5079afd8f1a92998f5be3df99dfc2afef Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Sat, 13 Oct 2018 10:14:41 -0700 Subject: [PATCH] Demote log messages --- src/bank.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bank.rs b/src/bank.rs index ec76d57cb6..5d52490e74 100644 --- a/src/bank.rs +++ b/src/bank.rs @@ -349,7 +349,7 @@ impl Bank { let mut last_ids_q = self.last_ids_q.write().unwrap(); if last_ids_q.last_ids.len() >= MAX_ENTRY_IDS { let id = last_ids_q.last_ids.pop_front().unwrap(); - info!("removing last_id {}", id); + debug!("removing last_id {}", id); last_ids_q.last_ids_sigs.remove(&id); } inc_new_counter_info!("bank-register_entry_id-registered", 1);