From 0756f3f4cf780764719b3b92308ce86b0d18733d Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Wed, 23 Nov 2016 17:45:53 +1100 Subject: [PATCH] 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. --- log.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log.hpp b/log.hpp index 7b2e1e4a..c9e3ee1c 100644 --- a/log.hpp +++ b/log.hpp @@ -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);