From 25707ce82e6246522755032a6a558ff6dfe36837 Mon Sep 17 00:00:00 2001 From: Torsten Dreyer Date: Sat, 17 Sep 2011 19:26:23 +0200 Subject: [PATCH] Add debug messages for real-weather runway selection --- src/Main/main.cxx | 5 +++++ 1 file changed, 5 insertions(+) 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"); -- 2.39.5