From 8de07e024ebd2eadd5edc44851e43fa382e0d4e5 Mon Sep 17 00:00:00 2001 From: mfranz Date: Sat, 1 Jul 2006 16:00:27 +0000 Subject: [PATCH] make clear that "Failed to find runway ..." doesn't have fatal consequences --- src/Main/fg_init.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main/fg_init.cxx b/src/Main/fg_init.cxx index 338e3962d..ed50f01b7 100644 --- a/src/Main/fg_init.cxx +++ b/src/Main/fg_init.cxx @@ -778,7 +778,7 @@ static bool fgSetPosFromAirportIDandRwy( const string& id, const string& rwy, bo if ( ! globals->get_runways()->search( id, rwy, &r ) ) { SG_LOG( SG_GENERAL, rwy_req ? SG_ALERT : SG_INFO, "Failed to find runway " << rwy << - " at airport " << id ); + " at airport " << id << ". Using default runway." ); return false; } } else { -- 2.39.5