Add missing space in a log message
This commit is contained in:
parent
83fef08a04
commit
94a8ba8f9b
1 changed files with 3 additions and 1 deletions
|
@ -265,7 +265,9 @@ void NavRadioComponent::search( double frequency, const SGGeod & aircraftPositio
|
||||||
_ident = "";
|
_ident = "";
|
||||||
return;
|
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();
|
_ident = _navRecord->ident();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue