Demote log messages

This commit is contained in:
Michael Vines 2018-10-13 10:14:41 -07:00
parent 1e736ec16d
commit 3828eda507
1 changed files with 1 additions and 1 deletions

View File

@ -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);