diff --git a/src/simulation/messaging/communication/message_broker.rs b/src/simulation/messaging/communication/message_broker.rs index af8ff79..99b8bc7 100644 --- a/src/simulation/messaging/communication/message_broker.rs +++ b/src/simulation/messaging/communication/message_broker.rs @@ -103,12 +103,6 @@ where pub fn send_recv(&mut self, now: u32) -> Vec { let vehicles = self.prepare_send_recv_vehicles(now); - for (_, m) in &vehicles { - if !m.vehicles.is_empty() { - info!("Rank {}, message {:?}", self.rank(), m); - } - } - let mut result: Vec = Vec::new(); let mut expected_vehicle_messages = self.neighbors.clone(); diff --git a/tests/test_adhoc_routing.rs b/tests/test_adhoc_routing.rs index fbb1721..d48a42d 100644 --- a/tests/test_adhoc_routing.rs +++ b/tests/test_adhoc_routing.rs @@ -26,8 +26,6 @@ fn create_resources(in_dir: &PathBuf, out_dir: &PathBuf) { #[test] fn execute_adhoc_routing_one_part_no_updates() { - // init_std_out_logging(); - create_resources( &PathBuf::from("./assets/adhoc_routing/no_updates/"), &PathBuf::from("./test_output/simulation/adhoc_routing/no_updates/one_part/"), @@ -67,8 +65,6 @@ fn execute_adhoc_routing_two_parts_no_updates() { #[test] fn execute_adhoc_routing_one_part_with_updates() { - // init_std_out_logging(); - create_resources( &PathBuf::from("./assets/adhoc_routing/with_updates/"), &PathBuf::from("./test_output/simulation/adhoc_routing/with_updates/one_part/"),