]> git.mxchange.org Git - flightgear.git/commitdiff
downgrade log-level for newnavradio messages
authorTorsten Dreyer <torsten@ŧ3r.de>
Thu, 11 Dec 2014 20:37:37 +0000 (21:37 +0100)
committerTorsten Dreyer <torsten@ŧ3r.de>
Thu, 11 Dec 2014 20:37:37 +0000 (21:37 +0100)
src/Instrumentation/newnavradio.cxx

index a932a0e2adebf89a436f618d46814db9d4351851..fc779db8ca5a186583e58116eb9f2886a5f0b2a6 100644 (file)
@@ -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();
 }