Salome HOME
Replace of Events_Error by Events_InfoMessage. Provide storing of non translated...
[modules/shaper.git] / src / Config / Config_XMLReader.cpp
index 1fcc90652b23220458ba0f987ef1c663da101f8a..bdfaa583af7022ce135c0b4a91ad8213325f8874 100644 (file)
@@ -13,7 +13,7 @@
 #include <Config_PropManager.h>
 
 #include <Events_Loop.h>
-#include <Events_Error.h>
+#include <Events_InfoMessage.h>
 #include <libxml/parser.h>
 #include <libxml/tree.h>
 
@@ -52,7 +52,7 @@ Config_XMLReader::Config_XMLReader(const std::string& theXmlFileName)
   myDocumentPath = prefix + FSEP + theXmlFileName;
   std::ifstream aTestFile(myDocumentPath);
   if (!aTestFile) 
-    Events_Error::send("Unable to open " + myDocumentPath);
+    Events_InfoMessage("Config_XMLReader", "Unable to open %1").arg(myDocumentPath).send();
   aTestFile.close();
 }