diff --git a/src/runtime2/component/component.rs b/src/runtime2/component/component.rs index 525613092199b6baf777c0a2e24ebe76e8f20631..ab2d1b6d3efa109c2e0ed1c753f9ff6937c4bf1f 100644 --- a/src/runtime2/component/component.rs +++ b/src/runtime2/component/component.rs @@ -735,7 +735,6 @@ pub(crate) fn default_handle_start_exit( // Iterating over ports by index to work around borrowing rules for port_index in 0..comp_ctx.num_ports() { let port = comp_ctx.get_port_by_index_mut(port_index); - println!("DEBUG: Considering port:\n{:?}", port); if port.state.is_closed() || port.state.is_set(PortStateFlag::Transmitted) || port.close_at_sync_end { // Already closed, or in the process of being closed continue;