Skip to content
Snippets Groups Projects
Commit 051bdb49 authored by Julien Michel's avatar Julien Michel
Browse files

ENH: Replace a few more traces

parent ea414404
No related branches found
No related tags found
No related merge requests found
...@@ -1656,11 +1656,6 @@ Application::IsParameterMissing(const std::string &key) const ...@@ -1656,11 +1656,6 @@ Application::IsParameterMissing(const std::string &key) const
} }
level++; level++;
} }
if (ret)
{
// the missing parameter is on an active branch : we need it
otbDebugMacro("MISSING : "<< key << " (Level "<< split.size()<<")");
}
} }
return ret; return ret;
} }
......
...@@ -211,10 +211,6 @@ ApplicationRegistry::CreateApplication(const std::string& name, bool useFactory) ...@@ -211,10 +211,6 @@ ApplicationRegistry::CreateApplication(const std::string& name, bool useFactory)
appli = app; appli = app;
appli->Init(); appli->Init();
} }
else
{
otbMsgDevMacro( << "Error ApplicationRegistry factory did not return an Application: " << possibleApp->GetNameOfClass() << std::endl );
}
} }
} }
...@@ -350,10 +346,6 @@ ApplicationRegistry::GetAvailableApplications(bool useFactory) ...@@ -350,10 +346,6 @@ ApplicationRegistry::GetAvailableApplications(bool useFactory)
std::string curName(app->GetName()); std::string curName(app->GetName());
appSet.insert(curName); appSet.insert(curName);
} }
else
{
otbMsgDevMacro( << "Error ApplicationRegistry factory did not return an Application: " << (*i)->GetNameOfClass() << std::endl );
}
} }
} }
...@@ -438,7 +430,7 @@ ApplicationRegistry::LoadApplicationFromPath(std::string path,std::string name) ...@@ -438,7 +430,7 @@ ApplicationRegistry::LoadApplicationFromPath(std::string path,std::string name)
} }
else else
{ {
otbMsgDevMacro( << "Can't load library : " << path << std::endl ); otbLogMacro(Warning,<< "Failed to load libraries from " << path << " while trying to create application "<<name );
} }
} }
return appli; return appli;
......
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