diff --git a/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx b/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx
index a4038607ca2fadf84c6a5d375fa8f0bad4e3d7cb..da901529120f7c189974476575febda582937150 100644
--- a/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx
+++ b/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx
@@ -52,6 +52,8 @@ CommandLineLauncher::CommandLineLauncher() : m_Expression(""), m_WatcherList()
 {
   m_Application = NULL;
   m_Parser = CommandLineParser::New();
+  m_LogOutput = itk::StdStreamLogOutput::New();
+  m_LogOutput->SetStream( std::cout );
 }
 
 CommandLineLauncher::CommandLineLauncher(const char * exp) : m_Expression(exp)
@@ -264,6 +266,10 @@ CommandLineLauncher::LoadApplication()
       std::cerr << "ERROR: Could not find application \"" << moduleName <<"\""<< std::endl;
       return;
     }
+
+  // Attach log output to the Application logger
+  m_Application->GetLogger()->SetTimeStampFormat(itk::LoggerBase::HUMANREADABLE);
+  m_Application->GetLogger()->AddLogOutput(m_LogOutput);
 }
 
 CommandLineLauncher::ParamResultType
diff --git a/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.h b/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.h
index 470daeaa979a6d11fd5ab2ee16beaf168be5f268..0f8ae8b71973860020fe4667d607210a0a0ce23a 100644
--- a/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.h
+++ b/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.h
@@ -27,6 +27,8 @@
 #include "itksys/SystemTools.hxx"
 #include "otbWrapperCommandLineParser.h"
 
+#include "itkStdStreamLogOutput.h"
+
 #include "otbStandardFilterWatcher.h"
 
 
@@ -141,6 +143,8 @@ private:
 
   WatcherListType m_WatcherList;
 
+  itk::StdStreamLogOutput::Pointer m_LogOutput;
+
 }; //end class
 
 } // end namespace Wrapper