Skip to content
Snippets Groups Projects
Commit 733967f4 authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

ENH:use GetOutputParametersSumUp to print image informations

parent e2e5ed1f
No related branches found
No related tags found
No related merge requests found
......@@ -261,8 +261,17 @@ private:
{
//Do nothing at all
}
//FIXME Logger must output also parameter groups
this->GetLogger()->Info("");
// Show result
otbAppLogINFO( << "Image informations:" << std::endl);
//otbAppLogINFO( << "General: ");
typedef std::vector< std::pair<std::string, std::string> > ParametersListType;
std::vector< std::pair<std::string, std::string> > appList = GetOutputParametersSumUp();
for (ParametersListType::const_iterator it = appList.begin();it != appList.end(); ++it)
{
otbAppLogINFO( << it->first << " " << it->second);
}
}
};
......
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