From 8c992abfa4dc43cd42a28e09eec5ef33b14cee0a Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 11 Nov 2002 15:19:56 +0000 Subject: [PATCH] Julian Foad: - In runway error message, say which runway. --- src/Airports/GenAirports/rwy_prec.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Airports/GenAirports/rwy_prec.cxx b/src/Airports/GenAirports/rwy_prec.cxx index bee051e0..3e09d51d 100644 --- a/src/Airports/GenAirports/rwy_prec.cxx +++ b/src/Airports/GenAirports/rwy_prec.cxx @@ -94,8 +94,9 @@ void gen_precision_rwy( const FGRunway& rwy_info, // belong. double length = rwy_info.length / 2.0 + 2.0; if ( length < 3075 ) { - SG_LOG(SG_GENERAL, SG_ALERT, - "This runway is not long enough for precision markings!"); + SG_LOG( SG_GENERAL, SG_ALERT, + "Runway " << rwy_info.rwy_no << " is not long enough (" + << rwy_info.length << ") for precision markings!"); } double start_pct = 0;