const FGAirport *fgFindAirportID( const string& id) {
const FGAirport* result = NULL;
if ( id.length() ) {
- SG_LOG( SG_GENERAL, SG_INFO, "Searching for airport code = " << id );
+ SG_LOG( SG_GENERAL, SG_BULK, "Searching for airport code = " << id );
result = globals->get_airports()->search( id );
} else {
return NULL;
}
- SG_LOG( SG_GENERAL, SG_INFO,
+ SG_LOG( SG_GENERAL, SG_BULK,
"Position for " << id << " is ("
<< result->getLongitude() << ", "
<< result->getLatitude() << ")" );
// double lon, lat;
- SG_LOG( SG_GENERAL, SG_INFO,
+ SG_LOG( SG_GENERAL, SG_BULK,
"Finding elevation for airport: " << id );
const FGAirport *a=fgFindAirportID( id);
Point3D fgGetAirportPos( const string& id ) {
// double lon, lat;
- SG_LOG( SG_ATC, SG_INFO,
+ SG_LOG( SG_ATC, SG_BULK,
"Finding position for airport: " << id );
const FGAirport *a = fgFindAirportID( id);