From 1e4ee320e7f6082539d4d25fd61ff902050bbcbd Mon Sep 17 00:00:00 2001 From: Julien Michel <julien.michel@cnes.fr> Date: Thu, 8 Mar 2018 14:53:16 +0100 Subject: [PATCH] ENH: Make default logging level Info when not in Debug build --- Modules/Core/Common/src/otbConfigurationManager.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Core/Common/src/otbConfigurationManager.cxx b/Modules/Core/Common/src/otbConfigurationManager.cxx index 2e2707d0fe..4b5875b3c5 100644 --- a/Modules/Core/Common/src/otbConfigurationManager.cxx +++ b/Modules/Core/Common/src/otbConfigurationManager.cxx @@ -79,7 +79,7 @@ itk::LoggerBase::PriorityLevelType ConfigurationManager::GetLoggerLevel() #ifndef NDEBUG itk::LoggerBase::PriorityLevelType level = itk::LoggerBase::DEBUG; #else - itk::LoggerBase::PriorityLevelType level = itk::LoggerBase::WARNING; + itk::LoggerBase::PriorityLevelType level = itk::LoggerBase::INFO; #endif -- GitLab