From: ehofman Date: Fri, 23 Jul 2004 18:58:42 +0000 (+0000) Subject: Reduce the log-level of the airport not found X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=009afccb37ab6484231a041e563b8be62dad8220;p=flightgear.git Reduce the log-level of the airport not found message. --- 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; }