diff --git a/src/runtime/connector.rs b/src/runtime/connector.rs index 70f9df50e1b80d8f0245a4e99e2c50114a5062e3..e9bce7685c94520e6df7cf873184512aee407e1f 100644 --- a/src/runtime/connector.rs +++ b/src/runtime/connector.rs @@ -245,7 +245,6 @@ impl ConnectorPDL { } pub fn handle_new_sync_comp_message(&mut self, message: SyncCompMessage, ctx: &mut ComponentCtx) -> Option { - println!("DEBUG: Actually really handling {:?}", message); if let Some(round_conclusion) = self.consensus.handle_new_sync_comp_message(message, ctx) { return Some(self.enter_non_sync_mode(round_conclusion, ctx)); } @@ -412,9 +411,7 @@ impl ConnectorPDL { self.eval_error = Some(eval_error); self.mode = Mode::SyncError; - println!("DEBUGERINO: Notify of fatal branch"); if let Some(conclusion) = self.consensus.notify_of_fatal_branch(branch_id, comp_ctx) { - println!("DEBUGERINO: Actually got {:?}", conclusion); return self.enter_non_sync_mode(conclusion, comp_ctx); } }