From afe94f63ea4ae680ff83d5293517ed357c21f284 Mon Sep 17 00:00:00 2001 From: ehofman Date: Mon, 27 Dec 2004 13:19:28 +0000 Subject: [PATCH] Remove some stale cout commands. --- src/AIModel/AIScenario.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/AIModel/AIScenario.cxx b/src/AIModel/AIScenario.cxx index 903a67947..6c8a75770 100644 --- a/src/AIModel/AIScenario.cxx +++ b/src/AIModel/AIScenario.cxx @@ -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); -- 2.39.5