From: Torsten Dreyer Date: Sat, 17 Sep 2011 17:26:23 +0000 (+0200) Subject: Add debug messages for real-weather runway selection X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=25707ce82e6246522755032a6a558ff6dfe36837;p=flightgear.git Add debug messages for real-weather runway selection --- diff --git a/src/Main/main.cxx b/src/Main/main.cxx index 6fa94dc9b..0fa2e7f94 100644 --- a/src/Main/main.cxx +++ b/src/Main/main.cxx @@ -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");