extend the logger for debugging purposes

This commit is contained in:
Sven Czarnian
2021-10-13 21:43:12 +02:00
parent 5295d1c155
commit 44837e59f1

View File

@@ -105,7 +105,7 @@ class Worker(Thread):
print('FCFS run:') print('FCFS run:')
for window in self.RecedingHorizonControl.Windows: for window in self.RecedingHorizonControl.Windows:
for inbound in window.Inbounds: for inbound in window.Inbounds:
print(' ' + inbound.Report.aircraft.callsign + ': ' + str(inbound.EstimatedArrivalTime)) print(' ' + inbound.Report.aircraft.callsign + ': ' + str(inbound.EstimatedArrivalTime) + '; ' + str(inbound.EarliestArrivalTime))
# get the last landing aircrafts per runway before the RHC stage to check for constraints # get the last landing aircrafts per runway before the RHC stage to check for constraints
# this is required to handle the overlap between windows # this is required to handle the overlap between windows