From: Torsten Dreyer Date: Thu, 11 Dec 2014 20:37:37 +0000 (+0100) Subject: downgrade log-level for newnavradio messages X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a4ab1dae3836aec645df8529866f1ca3af924b86;p=flightgear.git downgrade log-level for newnavradio messages --- diff --git a/src/Instrumentation/newnavradio.cxx b/src/Instrumentation/newnavradio.cxx index a932a0e2a..fc779db8c 100644 --- a/src/Instrumentation/newnavradio.cxx +++ b/src/Instrumentation/newnavradio.cxx @@ -261,11 +261,11 @@ void NavRadioComponent::search( double frequency, const SGGeod & aircraftPositio { _navRecord = FGNavList::findByFreq(frequency, aircraftPosition, getNavaidFilter() ); if( NULL == _navRecord ) { - SG_LOG(SG_INSTR,SG_ALERT, "No " << _name << " available at " << frequency ); + SG_LOG(SG_INSTR,SG_DEBUG, "No " << _name << " available at " << frequency ); _ident = ""; return; } - SG_LOG(SG_INSTR,SG_ALERT, "Using " << _name << "'" << _navRecord->get_ident() << "' for " << frequency ); + SG_LOG(SG_INSTR,SG_INFO, "Using " << _name << "'" << _navRecord->get_ident() << "' for " << frequency ); _ident = _navRecord->ident(); }