From 58f4709362cf97feec5ffc6edb249c6053bdee8e Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Sat, 16 Feb 2019 19:09:31 -0800 Subject: [PATCH] Reduce log severity of entry stream errors --- src/entry_stream_stage.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/entry_stream_stage.rs b/src/entry_stream_stage.rs index 2a9ae6393..65a6acbf3 100644 --- a/src/entry_stream_stage.rs +++ b/src/entry_stream_stage.rs @@ -76,14 +76,14 @@ impl EntryStreamStage { entry_stream .emit_block_event(block_slot, &leader_id, block_tick_height, block_id) .unwrap_or_else(|e| { - error!("Entry Stream error: {:?}, {:?}", e, entry_stream.output); + debug!("Entry Stream error: {:?}, {:?}", e, entry_stream.output); }); entry_stream.queued_block = None; } entry_stream .emit_entry_event(slot, &leader_id, &entry) .unwrap_or_else(|e| { - error!("Entry Stream error: {:?}, {:?}", e, entry_stream.output); + debug!("Entry Stream error: {:?}, {:?}", e, entry_stream.output); }); if 0 == leader_scheduler.num_ticks_left_in_slot(entry.tick_height) { entry_stream.queued_block = Some(EntryStreamBlock {