log: set default log level to NOTICE

Using NOTICE as the default log level gives us both DEBUG and INFO to
play with for messages that we don't want to display by default.
This commit is contained in:
Danny Robson 2016-11-23 17:45:53 +11:00
parent a1b35dfbbe
commit 0756f3f4cf

View File

@ -48,7 +48,7 @@ namespace util {
#define MAP_LEVEL_T(F) MAP(F, EMERGENCY, ALERT, CRITICAL, ERROR, WARN, NOTICE, INFO, DEBUG)
constexpr auto DEFAULT_LOG_LEVEL = INFO;
constexpr auto DEFAULT_LOG_LEVEL = NOTICE;
//-------------------------------------------------------------------------
const std::string& to_string (level_t);