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

ENH: Make default logging level Info when not in Debug build

parent bd7c8bb2
No related branches found
No related tags found
1 merge request!20Refactor logging for the whole library
......@@ -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
......
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