diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx
index 4a7804d527a3cad12263df988fa1c84bc9a67dfc..cc0790f406f6ab91928a14516000ce8f7acff687 100644
--- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx
+++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx
@@ -1656,11 +1656,6 @@ Application::IsParameterMissing(const std::string &key) const
         }
       level++;
       }
-    if (ret)
-      {
-      // the missing parameter is on an active branch : we need it
-      otbDebugMacro("MISSING : "<< key << " (Level "<< split.size()<<")");
-      }
     }
   return ret;
 }
diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplicationRegistry.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplicationRegistry.cxx
index f022af0ddbe47d8d7c59415363fff57800151c4f..f68d3a39233577a2f5e139063eb43da100cf9130 100644
--- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplicationRegistry.cxx
+++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplicationRegistry.cxx
@@ -211,10 +211,6 @@ ApplicationRegistry::CreateApplication(const std::string& name, bool useFactory)
           appli = app;
           appli->Init();
         }
-      else
-        {
-        otbMsgDevMacro( << "Error ApplicationRegistry factory did not return an Application: " << possibleApp->GetNameOfClass() << std::endl );
-        }
       }
     }
   
@@ -350,10 +346,6 @@ ApplicationRegistry::GetAvailableApplications(bool useFactory)
         std::string curName(app->GetName());
         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)
       }
     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;