From 34e458f67efc6531512fe95230a84c52023043ab Mon Sep 17 00:00:00 2001 From: Anthony Geay Date: Thu, 21 Mar 2024 13:19:31 +0100 Subject: [PATCH] Improve a little message readibility --- src/Container/SALOME_ContainerManager.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Container/SALOME_ContainerManager.cxx b/src/Container/SALOME_ContainerManager.cxx index eaa30bd21..20776769f 100644 --- a/src/Container/SALOME_ContainerManager.cxx +++ b/src/Container/SALOME_ContainerManager.cxx @@ -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 << " "; -- 2.30.2