]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkInterpreter.cxx
comment out cout s
[bbtk.git] / kernel / src / bbtkInterpreter.cxx
index 39f1cbec9dcc62e39d4252bbef4f697ff0e68eea..eba8ce61bdabd685df899382fc17e925f7c35361 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkInterpreter.cxx,v $ $
   Language:  C++
-  Date:      $Date: 2008/01/29 13:54:47 $
-  Version:   $Revision: 1.10 $
+  Date:      $Date: 2008/01/29 14:01:31 $
+  Version:   $Revision: 1.11 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -792,9 +792,6 @@ verbose = true;
         }
         foundFile = true;
 
-        std::cout << "recherche tous les .bbs du directory" << std::endl;
-        std::cout << "pour chacun, LoadScript" << std::endl; 
-
         std::vector<std::string> Filenames;
         int nbFiles = Utilities::Explore(fullDirectoryName, false, Filenames);
 // std::cout << "=================nbFiles " << nbFiles << std::endl;
@@ -859,17 +856,14 @@ verbose = true;
       
       // =============================================================== iterate on the paths
       {
-       std::cout << "iterate"<<std::endl;
       std::string path;
       std::vector<std::string>::iterator i;
       for (i=script_paths.begin();i!=script_paths.end();++i)
       {
 
         path = *i;
-       std::cout << "CUR=["<<path<<"]"<<std::endl;
        // we *really* want '.' to be the current working directory
         if (path == ".") {
-         std::cout << "PATH IS CURRENT"<<std::endl;
           char buf[2048]; // for getcwd
           char * currentDir = getcwd(buf, 2048);
           std::string cwd(currentDir);
@@ -878,9 +872,9 @@ verbose = true;
 
        // fullPathScriptName = Utilities::MakePkgnameFromPath(path, name, true); //pkgname);
 
-       fullPathScriptName = Utilities::MakePkgnameFromPath(path, /*pkgnam*/ name, true);
-       std::cout << "FULL PATH = "<<fullPathScriptName<<std::endl;
-       
+           fullPathScriptName = Utilities::MakePkgnameFromPath(path, pkgname, true);
+//std::cout << "FULL PATH = "<<fullPathScriptName<<std::endl;
+
       // Check if library exists
         if ( ! Utilities::FileExists(fullPathScriptName) )
         {
@@ -891,6 +885,8 @@ verbose = true;
             std::cout <<"   [" <<fullPathScriptName <<"] : doesn't exist" <<std::endl;
           continue;  // try next path
         }
+        if (verbose)
+           std::cout <<"   [" <<fullPathScriptName <<"] : found" <<std::endl;        
         foundFile = true;
         break; // a script was found; we stop iterating