1
0
Fork 0

Quiet some noisy logging in ATC code

This commit is contained in:
James Turner 2020-04-30 16:22:48 +01:00
parent e60d131a4e
commit 100efeebab
2 changed files with 2 additions and 2 deletions

View file

@ -1047,7 +1047,7 @@ bool FGGroundController::updateActiveTraffic(TrafficVectorIterator i,
FGTaxiSegment* segment = network->findSegment(pos);
length = segment->getLength();
if (segment->hasBlock(now)) {
SG_LOG(SG_ATC, SG_ALERT, "Taxiway incursion for AI aircraft" << i->getAircraft()->getCallSign());
SG_LOG(SG_ATC, SG_BULK, "Taxiway incursion for AI aircraft" << i->getAircraft()->getCallSign());
}
}

View file

@ -1071,7 +1071,7 @@ void FGTowerController::signOff(int id)
} else {
i->getAircraft()->resetTakeOffStatus();
i = activeTraffic.erase(i);
SG_LOG(SG_ATC, SG_INFO, "Signing off from tower controller");
SG_LOG(SG_ATC, SG_DEBUG, "Signing off from tower controller");
}
}