Skip to content
Snippets Groups Projects
Commit 06a7b1c2 authored by Antoine Regimbeau's avatar Antoine Regimbeau
Browse files

REFAC: get rid of std::cout

parent 932b2d76
No related branches found
No related tags found
No related merge requests found
......@@ -545,7 +545,6 @@ void Application::FreeRessources()
{
itk::ProcessObject * current = processStack.top();
processStack.pop();
std::cout<<current->GetNameOfClass()<<std::endl;
// if null continue
if ( !current )
continue;
......@@ -585,7 +584,6 @@ void Application::FreeRessources()
// Release data
for ( auto data : dataSet )
{
std::cout<<"one bulk is freed"<<std::endl;
data->ReleaseData();
}
// Call overrode method
......@@ -701,7 +699,6 @@ int Application::ExecuteAndWriteOutput()
}
std::ostringstream progressId;
progressId << "Writing " << outputParam->GetFileName() << "...";
std::cout<<"Add Process and write"<<std::endl;
AddProcess(outputParam->GetWriter(), progressId.str());
outputParam->Write();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment