]> git.mxchange.org Git - flightgear.git/commitdiff
Remove some stale cout commands.
authorehofman <ehofman>
Mon, 27 Dec 2004 13:19:28 +0000 (13:19 +0000)
committerehofman <ehofman>
Mon, 27 Dec 2004 13:19:28 +0000 (13:19 +0000)
src/AIModel/AIScenario.cxx

index 903a679475bd0d567545673c1aa9d0153d4953be..6c8a75770058dc47b767ffaeda149a936e6f44e5 100644 (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);