]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Improve a little message readibility duc/cm_update
authorAnthony Geay <anthony.geay@edf.fr>
Thu, 21 Mar 2024 12:19:31 +0000 (13:19 +0100)
committerAnthony Geay <anthony.geay@edf.fr>
Thu, 21 Mar 2024 12:19:31 +0000 (13:19 +0100)
src/Container/SALOME_ContainerManager.cxx

index eaa30bd212f474b10679edcc9c2521d4c876f34c..20776769ff1c79d0948900fa69bb1a212011eca8 100644 (file)
@@ -1028,7 +1028,7 @@ std::string GetCommandFromTemplate(const std::string& theScriptName,
   }
   else
   {
-    ERROR_MESSAGE("Can not import the template script!!!!!");
+    ERROR_MESSAGE("Can not import the template script \"" << theScriptName << "\" !");
   }
 
   MESSAGE("Command from template is ... " << command << std::endl);
@@ -1107,8 +1107,8 @@ std::string SALOME_ContainerManager::BuildCommandToLaunchLocalContainer(const En
   std::string ompi_uri_file = GetenvThreadSafeAsString("OMPI_URI_FILE");
   script_parameters.push(ompi_uri_file.empty() ? "NULL" : ompi_uri_file);
 
+  MESSAGE("Retrieving command from template (python module) \"" << script_name << "\"" << std::endl);
   std::string command_from_template = GetCommandFromTemplate(script_name, script_parameters);
-  MESSAGE("Command to be executed: " << command_from_template << std::endl);
 
   std::ostringstream o;
   o << command_from_template << " ";