X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FLogger%2FLevels.hh;h=f537fce8cb5e4b85abb2559ef7dfbf194dfc0cd2;hb=914aedddb62c3ca4fcabc881ad12b398a1c120f3;hp=21d517660779ab64f91e102de29218c7394767eb;hpb=91b6e8382ce61c2d1286203e41d030ef8cd33f3e;p=senf.git diff --git a/Utils/Logger/Levels.hh b/Utils/Logger/Levels.hh index 21d5176..f537fce 100644 --- a/Utils/Logger/Levels.hh +++ b/Utils/Logger/Levels.hh @@ -41,7 +41,8 @@ namespace log {
VERBOSE
Really verbose %log messages. Messages at this level are used for internal debugging. They should be enabled only selectively within the areas currently under - inspection.
+ inspection. The default %log stream senf::log::Debug has these messages disabled at + compile time by default. To enable them, see \ref config.
NOTICE
Arbitrary unimportant notice. Message which normally should be disabled but might be informative to better understand the programs operation.
@@ -74,27 +75,27 @@ namespace log { ///\{ - /** \brief Log level VERBOSE + /** \brief Log level %VERBOSE \see loglevels */ struct VERBOSE : public detail::LevelBase { static unsigned const value = 1; }; - /** \brief Log level NOTICE + /** \brief Log level %NOTICE \see loglevels */ struct NOTICE : public detail::LevelBase { static unsigned const value = 2; }; - /** \brief Log level MESSAGE + /** \brief Log level %MESSAGE \see loglevels */ struct MESSAGE : public detail::LevelBase { static unsigned const value = 3; }; - /** \brief Log level IMPORTANT + /** \brief Log level %IMPORTANT \see loglevels */ struct IMPORTANT : public detail::LevelBase { static unsigned const value = 4; }; - /** \brief Log level CRITICAL + /** \brief Log level %CRITICAL \see loglevels */ struct CRITICAL : public detail::LevelBase { static unsigned const value = 5; }; - /** \brief Log level FATAL + /** \brief Log level %FATAL \see loglevels */ struct FATAL : public detail::LevelBase { static unsigned const value = 6; }; @@ -102,7 +103,7 @@ namespace log { \see loglevels */ struct DISABLED : public detail::LevelBase { static unsigned const value = 7; }; - /** \brief Inherit log level + /** \brief Inherit %log level \see loglevels */ struct NONE : public detail::LevelBase { static unsigned const value = 0; };