From a4ab1dae3836aec645df8529866f1ca3af924b86 Mon Sep 17 00:00:00 2001 From: Torsten Dreyer Date: Thu, 11 Dec 2014 21:37:37 +0100 Subject: [PATCH] downgrade log-level for newnavradio messages --- src/Instrumentation/newnavradio.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); }