Utils/Logger: Complete unit testing
[senf.git] / Utils / Logger / Config.hh
index 27a9af8..9725f04 100644 (file)
 
     <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.
-
-    \fixme Restructure compile-time configuration: Only allow stream based configuration using
-        SENF_LOG_CONF. For more complex configuration, accept a macro SENF_LOG_CONFFILE which, if
-        defined, must define the path of a file to be included. Area specific configuration must be
-        done in this include file. The area must be complete (not only a predeclaration) at that
-        point.
+    discarded. This allows to additionally disable messages at run-time. Message routing is managed
+    via the \ref Target interface.
  */
 
 namespace senf {
@@ -68,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)