Demote 'not enough peers in crdt table' log message

This commit is contained in:
Michael Vines 2018-10-02 21:45:15 -07:00 committed by Grimes
parent beb4536841
commit f90488c77b
1 changed files with 1 additions and 1 deletions

View File

@ -526,7 +526,7 @@ impl Crdt {
received_index: u64,
) -> Result<()> {
if broadcast_table.is_empty() {
warn!("{}:not enough peers in crdt table", me.id);
debug!("{}:not enough peers in crdt table", me.id);
inc_new_counter_info!("crdt-broadcast-not_enough_peers_error", 1);
Err(CrdtError::NoPeers)?;
}