From 44837e59f1f0c166f7f822a900e8c260f10aa388 Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Wed, 13 Oct 2021 21:43:12 +0200 Subject: [PATCH] extend the logger for debugging purposes --- aman/sys/Worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aman/sys/Worker.py b/aman/sys/Worker.py index a54f5a1..fa079d1 100644 --- a/aman/sys/Worker.py +++ b/aman/sys/Worker.py @@ -105,7 +105,7 @@ class Worker(Thread): print('FCFS run:') for window in self.RecedingHorizonControl.Windows: 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 # this is required to handle the overlap between windows