Utils/Logger: Complete unit testing
[senf.git] / Utils / Logger / Config.hh
index a9bf7c7..9725f04 100644 (file)
@@ -45,7 +45,8 @@
 
     <em>Runtime</em> configuration on the other hand deals with routing all those messages, which
     are enabled at compile time to the logging targets. If a message is not routed, it will be
-    discarded. This allows to additionally disable messages at run-time.
+    discarded. This allows to additionally disable messages at run-time. Message routing is managed
+    via the \ref Target interface.
  */
 
 namespace senf {
@@ -62,7 +63,7 @@ namespace log {
         be set on the compiler command line:
         <pre>
         g++ ... -DSENF_LOG_CONF="(( (senf)(log)(Debug),(_),DISABLED ))
-                                 (( (senf)(log)(Debug),(foo)(SomeClass),(VERBOSE) ))
+                                 (( (senf)(log)(Debug),(foo)(SomeClass),VERBOSE ))
                                  (( (foo)(Transactions),(_),NOTICE ))" ...
         </pre>
         (As this option can get quite long, you might want to use the '-imacros' option instead)
@@ -118,7 +119,7 @@ namespace log {
     struct Enabled
     {
         static const bool value = (
-            (Level::value == senf::log::NONE::value ? Stream::defaultLevel::value : Level::value)
+            (Level::value == NONE::value ? Stream::defaultLevel::value : Level::value)
                 >= detail::Config<Stream,Area>::compileLimit::value );
     };