@@ -14,7 +14,7 @@ static lf_ret_t StartupCoordinator_connect_to_neighbors_blocking(StartupCoordina
1414 FederatedEnvironment * env_fed = (FederatedEnvironment * )self -> env ;
1515 validate (self -> state == StartupCoordinationState_UNINITIALIZED );
1616 self -> state = StartupCoordinationState_CONNECTING ;
17- LF_INFO (FED , "%s connecting to %zu federated peers" , self -> env -> main -> name , env_fed -> net_bundles_size );
17+ LF_DEBUG (FED , "%s connecting to %zu federated peers" , self -> env -> main -> name , env_fed -> net_bundles_size );
1818 lf_ret_t ret ;
1919
2020 // Open all connections.
@@ -50,8 +50,8 @@ static lf_ret_t StartupCoordinator_connect_to_neighbors_blocking(StartupCoordina
5050 }
5151 }
5252
53- LF_INFO (FED , "%s Established connection to all %zu federated peers" , self -> env -> main -> name ,
54- env_fed -> net_bundles_size );
53+ LF_DEBUG (FED , "%s Established connection to all %zu federated peers" , self -> env -> main -> name ,
54+ env_fed -> net_bundles_size );
5555 self -> state = StartupCoordinationState_HANDSHAKING ;
5656 return LF_OK ;
5757}
@@ -184,7 +184,7 @@ static void StartupCoordinator_handle_startup_handshake_response(StartupCoordina
184184 }
185185
186186 if (all_received ) {
187- LF_INFO (FED , "Handshake completed with %zu federated peers" , self -> num_neighbours );
187+ LF_DEBUG (FED , "Handshake completed with %zu federated peers" , self -> num_neighbours );
188188 self -> state = StartupCoordinationState_NEGOTIATING ;
189189 // Schedule the start time negotiation to occur immediately.
190190 StartupCoordinator_schedule_system_self_event (self , self -> env -> get_physical_time (self -> env ) + MSEC (50 ),
@@ -289,8 +289,8 @@ static void StartupCoordinator_handle_start_time_proposal(StartupCoordinator *se
289289 }
290290
291291 if (iteration_completed ) {
292- LF_INFO (FED , "Start time negotiation round %d completed. Current start time: " PRINTF_TIME ,
293- self -> start_time_proposal_step , self -> start_time_proposal );
292+ LF_DEBUG (FED , "Start time negotiation round %d completed. Current start time: " PRINTF_TIME ,
293+ self -> start_time_proposal_step , self -> start_time_proposal );
294294 if (self -> start_time_proposal_step == self -> longest_path ) {
295295 LF_INFO (FED , "Start time negotiation completed Starting at " PRINTF_TIME , self -> start_time_proposal );
296296 self -> state = StartupCoordinationState_RUNNING ;
0 commit comments