@@ -11,7 +11,7 @@ public static bool HasFlightComputer(Guid id)
1111 var satellite = RTCore . Instance . Satellites [ id ] ;
1212 if ( satellite == null ) return false ;
1313 var hasFlightComputer = satellite . FlightComputer != null ;
14- RTLog . Notify ( "Flight: {0} HasFlightComputer: {1}" , id , hasFlightComputer ) ;
14+ RTLog . Verbose ( "Flight: {0} HasFlightComputer: {1}" , id , hasFlightComputer ) ;
1515 return hasFlightComputer ;
1616 }
1717
@@ -23,7 +23,7 @@ public static void AddSanctionedPilot(Guid id, Action<FlightCtrlState> autopilot
2323 {
2424 if ( spu . FlightComputer == null ) continue ;
2525 if ( spu . FlightComputer . SanctionedPilots . Contains ( autopilot ) ) continue ;
26- RTLog . Notify ( "Flight: {0} Adding Sanctioned Pilot" , id ) ;
26+ RTLog . Verbose ( "Flight: {0} Adding Sanctioned Pilot" , id ) ;
2727 spu . FlightComputer . SanctionedPilots . Add ( autopilot ) ;
2828 }
2929 }
@@ -35,7 +35,7 @@ public static void RemoveSanctionedPilot(Guid id, Action<FlightCtrlState> autopi
3535 foreach ( var spu in satellite . SignalProcessors )
3636 {
3737 if ( spu . FlightComputer == null ) continue ;
38- RTLog . Notify ( "Flight: {0} Removing Sanctioned Pilot" , id ) ;
38+ RTLog . Verbose ( "Flight: {0} Removing Sanctioned Pilot" , id ) ;
3939 spu . FlightComputer . SanctionedPilots . Remove ( autopilot ) ;
4040 }
4141 }
@@ -44,15 +44,15 @@ public static bool HasAnyConnection(Guid id)
4444 {
4545 var satellite = RTCore . Instance . Satellites [ id ] ;
4646 var hasConnection = RTCore . Instance . Network [ satellite ] . Any ( ) ;
47- RTLog . Notify ( "Flight: {0} Has Connection: {1}" , id , hasConnection ) ;
47+ RTLog . Verbose ( "Flight: {0} Has Connection: {1}" , id , hasConnection ) ;
4848 return hasConnection ;
4949 }
5050
5151 public static bool HasConnectionToKSC ( Guid id )
5252 {
5353 var satellite = RTCore . Instance . Satellites [ id ] ;
5454 var connectedToKerbin = RTCore . Instance . Network [ satellite ] . Any ( r => RTCore . Instance . Network . GroundStations . ContainsKey ( r . Goal . Guid ) ) ;
55- RTLog . Notify ( "Flight: {0} Has Connection to Kerbin: {1}" , id , connectedToKerbin ) ;
55+ RTLog . Verbose ( "Flight: {0} Has Connection to Kerbin: {1}" , id , connectedToKerbin ) ;
5656 return connectedToKerbin ;
5757 }
5858
@@ -61,7 +61,7 @@ public static double GetShortestSignalDelay(Guid id)
6161 var satellite = RTCore . Instance . Satellites [ id ] ;
6262 if ( ! RTCore . Instance . Network [ satellite ] . Any ( ) ) return Double . PositiveInfinity ;
6363 var shortestDelay = RTCore . Instance . Network [ satellite ] . Min ( ) . Delay ;
64- RTLog . Notify ( "Flight: Shortest signal delay from {0} to {1}" , id , shortestDelay ) ;
64+ RTLog . Verbose ( "Flight: Shortest signal delay from {0} to {1}" , id , shortestDelay ) ;
6565 return shortestDelay ;
6666 }
6767
@@ -70,7 +70,7 @@ public static double GetSignalDelayToKSC(Guid id)
7070 var satellite = RTCore . Instance . Satellites [ id ] ;
7171 if ( ! RTCore . Instance . Network [ satellite ] . Any ( r => RTCore . Instance . Network . GroundStations . ContainsKey ( r . Goal . Guid ) ) ) return Double . PositiveInfinity ;
7272 var signalDelaytoKerbin = RTCore . Instance . Network [ satellite ] . Where ( r => RTCore . Instance . Network . GroundStations . ContainsKey ( r . Goal . Guid ) ) . Min ( ) . Delay ;
73- RTLog . Notify ( "Connection from {0} to Kerbin Delay: {1}" , id , signalDelaytoKerbin ) ;
73+ RTLog . Verbose ( "Connection from {0} to Kerbin Delay: {1}" , id , signalDelaytoKerbin ) ;
7474 return signalDelaytoKerbin ;
7575 }
7676
@@ -86,7 +86,7 @@ public static double GetSignalDelayToSatellite(Guid a, Guid b)
8686
8787 var path = NetworkPathfinder . Solve ( satelliteA , satelliteB , neighbors , cost , heuristic ) ;
8888 var delayBetween = path . Delay ;
89- RTLog . Notify ( "Connection from {0} to {1} Delay: {2}" , a , b , delayBetween ) ;
89+ RTLog . Verbose ( "Connection from {0} to {1} Delay: {2}" , a , b , delayBetween ) ;
9090 return delayBetween ;
9191 }
9292 }
0 commit comments