1
0
Fork 0

Add debug messages for real-weather runway selection

This commit is contained in:
Torsten Dreyer 2011-09-17 19:26:23 +02:00
parent f9d35d3bf5
commit 25707ce82e

View file

@ -510,6 +510,8 @@ static void fgIdleFunction ( void ) {
// runway selection as for AI traffic. However, this code belongs to
// somewhere(?) else - if I only new where...
if( true == fgGetBool( "/environment/metar/valid" ) ) {
SG_LOG(SG_ENVIRONMENT, SG_INFO,
"Using METAR for runway selection: '" << fgGetString("/environment/metar/data") << "'" );
// the realwx_ctrl fetches metar in the foreground on init,
// If it was able to fetch a metar or one was given on the commandline,
// the valid flag is set here, otherwise it is false
@ -525,6 +527,9 @@ static void fgIdleFunction ( void ) {
extern bool fgSetPosFromAirportIDandHdg( const string& id, double tgt_hdg );
fgSetPosFromAirportIDandHdg( apt, hdg );
}
} else {
SG_LOG(SG_ENVIRONMENT, SG_INFO,
"No METAR available to pick active runway" );
}
fgSplashProgress("initializing graphics engine");