diff --git a/crates/task-impls/src/da.rs b/crates/task-impls/src/da.rs index 4037e07a23..b6244c972a 100644 --- a/crates/task-impls/src/da.rs +++ b/crates/task-impls/src/da.rs @@ -604,7 +604,7 @@ where match result { Err(_) => { // Fall through below to updating new block - error!( + debug!( "propose_max_round_time passed, sending transactions we have so far" ); } diff --git a/crates/task-impls/src/view_sync.rs b/crates/task-impls/src/view_sync.rs index eafeb7a468..ad9191f3f1 100644 --- a/crates/task-impls/src/view_sync.rs +++ b/crates/task-impls/src/view_sync.rs @@ -543,7 +543,8 @@ where let name = format!( "View Sync Replica Task: Attempting to enter view {:?} from view {:?}", - self.next_view, self.current_view + *view_number + 1, + *view_number ); let replica_handle_event = HandleEvent(Arc::new( @@ -781,6 +782,7 @@ where let phase = self.phase.clone(); async move { async_sleep(self.view_sync_timeout).await; + error!("Vote sending timed out in ViewSyncCertificateRecv"); stream .publish(SequencingHotShotEvent::ViewSyncTimeout( TYPES::Time::new(*self.next_view), @@ -842,6 +844,7 @@ where let stream = self.event_stream.clone(); async move { async_sleep(self.view_sync_timeout).await; + error!("Vote sending timed out in ViewSyncTrigger"); stream .publish(SequencingHotShotEvent::ViewSyncTimeout( TYPES::Time::new(*self.next_view), @@ -912,6 +915,7 @@ where let stream = self.event_stream.clone(); async move { async_sleep(self.view_sync_timeout).await; + error!("Vote sending timed out in ViewSyncTimeout"); stream .publish(SequencingHotShotEvent::ViewSyncTimeout( TYPES::Time::new(*self.next_view),