]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
PAL9165. emit log message only if no ImportExport file found
authoreap <eap@opencascade.com>
Tue, 14 Jun 2005 13:34:27 +0000 (13:34 +0000)
committereap <eap@opencascade.com>
Tue, 14 Jun 2005 13:34:27 +0000 (13:34 +0000)
src/GEOMImpl/GEOMImpl_IInsertOperations.cxx

index 520eba58fd4392c6b5242fd1fab6188487f222c4..a3a60ebbeb485b3c0611498209da89e8f575d3ea 100644 (file)
@@ -383,11 +383,14 @@ Standard_Boolean GEOMImpl_IInsertOperations::InitResMgr()
 #else
     aUserResDir += "/.salome/resources";
 #endif
-    myResMgr = new Resource_Manager ("ImportExport", aResDir, aUserResDir, Standard_True);
-  }
+    myResMgr = new Resource_Manager ("ImportExport", aResDir, aUserResDir, Standard_False);
 
-  if (myResMgr->Find("Import") || myResMgr->Find("Export"))
-    return Standard_True;
+    if (!myResMgr->Find("Import") && !myResMgr->Find("Export")) {
+      // instead of complains in Resource_Manager
+      INFOS("No valid file \"ImportExport\" found in " << aResDir.ToCString() <<
+            " and in " << aUserResDir.ToCString() );
+    }
+  }
 
-  return Standard_False;
+  return ( myResMgr->Find("Import") || myResMgr->Find("Export") );
 }