]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
remove "printf" log
authorabd <abd@opencascade.com>
Thu, 14 Sep 2006 11:13:31 +0000 (11:13 +0000)
committerabd <abd@opencascade.com>
Thu, 14 Sep 2006 11:13:31 +0000 (11:13 +0000)
src/VISU_I/VISU_Gen_i.cc
src/VISU_I/VISU_Result_i.cc

index b521461ab1957f88f4295627d9de3290f6d6ef72..172cb49b67bfee7023a4d350b9cef886ad6ccfbf 100644 (file)
@@ -337,8 +337,7 @@ namespace VISU
       aCommand.sprintf( " %s %s%s", aFile.c_str(), aTmpDir.c_str(), aFileName.c_str() ); 
       aCommand = QDir::convertSeparators( aCommand );
       aCommand.prepend( COPY_COMMAND );
-       
-      printf( "VISU_Gen_i::Save  %s\n", aCommand.latin1() );
+             
                        if(system(aCommand.latin1())){
              INFOS("VISU_Gen_i::Save - Cann't execute the command :"<<aCommand);
              continue;
@@ -405,7 +404,6 @@ namespace VISU
     aCommand = QDir::convertSeparators( aCommand );
     aCommand.prepend( COPY_COMMAND );
 
-               printf( "VISU_Gen_i::SaveASCII %s \n", aCommand.latin1() );
                if(system(aCommand.latin1())){
            if(MYDEBUG) MESSAGE("VISU_Gen_i::Save - Can't execute the command :"<<aCommand);
            continue;
@@ -1008,7 +1006,6 @@ namespace VISU
       aCommand = QDir::convertSeparators( aCommand );
       aCommand.prepend( COPY_COMMAND );
 
-      printf( " VISU_Gen_i::CopyFrom: %s\n", aCommand.latin1() );
       if(system(aCommand.latin1()) == -1) {
        if(MYDEBUG) MESSAGE("VISU_Gen_i::Copy - Cann't execute the command :"<<aCommand);
        return NULL;
index c3189a7d1164001d91696e8614416cc38aa722b8..69606ebbfebead98e3d1b0a2715fabd5d42b6b7d 100644 (file)
@@ -1163,8 +1163,6 @@ Create(const char* theFileName)
       aCommand = QDir::convertSeparators( aCommand );
       aCommand.prepend( COPY_COMMAND );
 
-      printf( " VISU::Result_i::Create   %s \n", aCommand.latin1() );
-
       if(system(aCommand.latin1()) == -1){
        MESSAGE("Create - Can't execute the command :"<<aCommand);
        return NULL;
@@ -1316,7 +1314,7 @@ Restore(SALOMEDS::SObject_ptr theSObject,
          aCommand.sprintf(" %s %s%s",aHDFFileName, aResultPath, myFileInfo.baseName().latin1());
     aCommand = QDir::convertSeparators( aCommand );
     aCommand.prepend( MOVE_COMMAND );
-    printf ( "VISU::Result_i::Restore %s\n", aCommand.latin1() );
+
          if (system(aCommand.latin1()) == -1) {
            if(MYDEBUG) MESSAGE("VISU::Result_i::Restore - Can't execute the command :" << aCommand);
            return NULL;
@@ -1329,8 +1327,8 @@ Restore(SALOMEDS::SObject_ptr theSObject,
          aCommand.sprintf(" %s %s\0",aHDFFileName, myFileInfo.filePath().latin1());
     aCommand = QDir::convertSeparators( aCommand );
     aCommand.prepend( MOVE_COMMAND );
-    printf ( "VISU::Result_i::Restore %s\n", aCommand.latin1() );
-         if (system(aCommand.latin1()) == -1) {
+
+    if (system(aCommand.latin1()) == -1) {
            if(MYDEBUG) MESSAGE("VISU::Result_i::Restore - Can't execute the command :" << aCommand);
            return NULL;
          } else {