diff --git a/src/Main/fg_init.cxx b/src/Main/fg_init.cxx index d3012aadd..a78638f0b 100644 --- a/src/Main/fg_init.cxx +++ b/src/Main/fg_init.cxx @@ -243,7 +243,7 @@ bool fgInitConfig ( int argc, char **argv ) { 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) { @@ -868,6 +868,7 @@ bool fgInitSubsystems( void ) { // 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() ); diff --git a/src/Main/options.cxx b/src/Main/options.cxx index 5bba73077..52e3f7748 100644 --- a/src/Main/options.cxx +++ b/src/Main/options.cxx @@ -935,6 +935,8 @@ parse_option (const string& arg) 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) {