diff --git a/src/runtime2/runtime.rs b/src/runtime2/runtime.rs index e276852bdc0eea566fe69b86c7ebec6d1b25d692..5e35dff82d1472beac90834a3438a579c455b7e5 100644 --- a/src/runtime2/runtime.rs +++ b/src/runtime2/runtime.rs @@ -359,8 +359,6 @@ impl Runtime { debug_assert!(branch.owned_ports.contains(&port_id.0.u32_suffix)); let mut insert_in_pending_receive = false; - println!("DEBUG: Connector {} performing get on {:#?}", connector_id, port_id); - match branch.port_mapping.entry(port_id) { Entry::Vacant(entry) => { // No entry yet, so force to firing @@ -387,8 +385,6 @@ impl Runtime { } } - println!("DEBUG: insert = {}, port mapping is now {:#?}", insert_in_pending_receive, &branch.port_mapping); - if insert_in_pending_receive { // Perform the insert match desc.spec_branches_pending_receive.entry(port_id) { @@ -447,7 +443,6 @@ impl Runtime { // Branch just performed a `put()`. Check if we have // assigned the port value and if so, if it is // consistent. - println!("DEBUG: Connector {} performing put on {:#?}", connector_id, port_id); let mut can_put = true; branch.branch_context.just_called_did_put = true; match branch.port_mapping.entry(port_id) { @@ -477,7 +472,6 @@ impl Runtime { } } } - println!("DEBUG: can_put = {}, port mapping is now {:#?}", can_put, &branch.port_mapping); if can_put { // Actually put the message in the outbox