aircraft_path.append(aircraft);
aircraft_path.concat("-set.xml");
SG_LOG(SG_INPUT, SG_INFO, "Reading default aircraft: " << aircraft
- << " from " << props_path.str());
+ << " from " << aircraft_path.str());
try {
readProperties(aircraft_path.str(), globals->get_props());
} catch (const sg_exception &e) {
// Initialize ATC list management and query systems
////////////////////////////////////////////////////////////////////
+ //DCL
SG_LOG(SG_GENERAL, SG_INFO, " ATIS");
current_atislist = new FGATISList;
SGPath p_atis( globals->get_fg_root() );
apath.append( "Aircraft" );
apath.append( arg.substr(11) );
apath.concat( "-set.xml" );
+ SG_LOG(SG_INPUT, SG_INFO, "Reading aircraft: " << arg.substr(11)
+ << " from " << apath.str());
try {
readProperties( apath.str(), globals->get_props() );
} catch (const sg_exception &e) {