downgrade log-level for newnavradio messages
This commit is contained in:
parent
b750e9d8b5
commit
a4ab1dae38
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue