Salome HOME
[EDF29150] : log performance of python scripts run inside SALOME container + verbosit...
[modules/kernel.git] / src / Container / Container_init_python.cxx
index 93f54ac044c8beba8968ca30861e11047b01db54..b3ba17777dded83d7a1e6531159e67afb2685e0a 100644 (file)
@@ -165,9 +165,6 @@ void KERNEL_PYTHON::init_python(int argc, char **argv)
       MESSAGE("Python already initialized");
       return;
     }
-  MESSAGE("=================================================================");
-  MESSAGE("Python Initialization...");
-  MESSAGE("=================================================================");
   // set stdout to line buffering (aka C++ std::cout)
   setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
   char* env_python=getenv("SALOME_PYTHON");
@@ -179,7 +176,7 @@ void KERNEL_PYTHON::init_python(int argc, char **argv)
   Py_Initialize(); // Initialize the interpreter
   if (Py_IsInitialized())
     {
-      MESSAGE("Python initialized eh eh eh");
+      MESSAGE("Python initialized");
     }
   wchar_t **changed_argv = new wchar_t*[argc]; // Setting arguments
   for (int i = 0; i < argc; i++)