1
0
Fork 0

Add missing space in a log message

This commit is contained in:
Florent Rougon 2017-11-19 11:14:51 +01:00
parent 83fef08a04
commit 94a8ba8f9b

View file

@ -265,7 +265,9 @@ void NavRadioComponent::search( double frequency, const SGGeod & aircraftPositio
_ident = "";
return;
}
SG_LOG(SG_INSTR,SG_INFO, "Using " << _name << "'" << _navRecord->get_ident() << "' for " << frequency );
SG_LOG(SG_INSTR, SG_INFO,
"Using " << _name << " '" << _navRecord->get_ident() << "' for " <<
frequency);
_ident = _navRecord->ident();
}