diff --git a/Code/Common/otbPipelineMemoryPrintCalculator.cxx b/Code/Common/otbPipelineMemoryPrintCalculator.cxx index 397ba8b1126fbb30d860dccc6d5d8967c3cf5e6c..b8dff8c995087bc77f8d936ed71e8a3c18ad58d7 100644 --- a/Code/Common/otbPipelineMemoryPrintCalculator.cxx +++ b/Code/Common/otbPipelineMemoryPrintCalculator.cxx @@ -61,7 +61,7 @@ void PipelineMemoryPrintCalculator ::Compute() { - // Clear the visisted process objects set + // Clear the visited process objects set m_VisitedProcessObjects.clear(); // Dry run of pipeline synchronisation @@ -96,6 +96,7 @@ PipelineMemoryPrintCalculator::MemoryPrintType PipelineMemoryPrintCalculator ::EvaluateMemoryPrint(ProcessObjectType * process) { + otbMsgDevMacro(<< "EvaluateMemoryPrint for " << process->GetNameOfClass() << " (" << process << ")") // This variable will store the final print MemoryPrintType print = 0; @@ -150,6 +151,7 @@ PipelineMemoryPrintCalculator::MemoryPrintType PipelineMemoryPrintCalculator ::EvaluateDataObjectPrint(DataObjectType * data) const { + otbMsgDevMacro(<< "EvaluateMemoryPrint for " << data->GetNameOfClass() << " (" << data << ")") #define OTB_IMAGE_SIZE_BLOCK(type) \ if(dynamic_cast<itk::Image<type, 2> *>(data) != NULL) \