1
0
Fork 0

Remove some stale cout commands.

This commit is contained in:
ehofman 2004-12-27 13:19:28 +00:00
parent 18ff3a6108
commit afe94f63ea

View file

@ -41,13 +41,13 @@ FGAIScenario::FGAIScenario(string &filename)
int i;
SGPath path( globals->get_fg_root() );
cout << "/Data/AI/" << filename << endl;
// cout << "/Data/AI/" << filename << endl;
path.append( ("/Data/AI/" + filename + ".xml").c_str() );
SGPropertyNode root;
readProperties(path.str(), &root);
cout <<"path " << path.str() << endl;
// cout <<"path " << path.str() << endl;
try {
readProperties(path.str(), &root);
@ -64,7 +64,7 @@ FGAIScenario::FGAIScenario(string &filename)
SGPropertyNode * node = root.getNode("scenario");
for (i = 0; i < node->nChildren(); i++) {
cout << "Reading entity data entry " << i << endl;
// cout << "Reading entity data entry " << i << endl;
SGPropertyNode * entry_node = node->getChild(i);