From 009afccb37ab6484231a041e563b8be62dad8220 Mon Sep 17 00:00:00 2001 From: ehofman Date: Fri, 23 Jul 2004 18:58:42 +0000 Subject: [PATCH] Reduce the log-level of the airport not found message. --- src/ATC/ATCutils.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ATC/ATCutils.cxx b/src/ATC/ATCutils.cxx index f5decf766..fa00be1e4 100644 --- a/src/ATC/ATCutils.cxx +++ b/src/ATC/ATCutils.cxx @@ -315,7 +315,7 @@ bool dclFindAirportID( const string& id, FGAirport *a ) { result = globals->get_airports()->search( id ); if ( result.id.empty() ) { - SG_LOG( SG_GENERAL, SG_ALERT, + SG_LOG( SG_GENERAL, SG_WARN, "Failed to find " << id << " in basic.dat.gz" ); return false; }