]> git.mxchange.org Git - flightgear.git/commitdiff
Add debug messages for real-weather runway selection
authorTorsten Dreyer <Torsten@t3r.de>
Sat, 17 Sep 2011 17:26:23 +0000 (19:26 +0200)
committerTorsten Dreyer <Torsten@t3r.de>
Tue, 20 Sep 2011 14:15:47 +0000 (16:15 +0200)
src/Main/main.cxx

index 6fa94dc9bc541dc8b5625535cb864e50b94c4cf2..0fa2e7f94c16489c3fe62130a0529b6af4b4fc34 100644 (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");