First commit to cleanup log module documentation.
[bertos.git] / bertos / cfg / log.h
index a09de318d26f94483b70d597126bdb826d2e4d5e..ff7ddc642c5a761b2545d8651ffd40317933bfdd 100644 (file)
  * for more detail).
  *
  * $WIZ$ log_level = "LOG_LVL_NONE", "LOG_LVL_ERR", "LOG_LVL_WARN", "LOG_LVL_INFO"
- * }
+ * \{
  */
 #define LOG_LVL_NONE      0
 #define LOG_LVL_ERR       1
 #define LOG_LVL_WARN      2
 #define LOG_LVL_INFO      3
+/** \} */
 
 /**
  * \name Logging format
  * function names and line number information to each log entry.
  *
  * $WIZ$ log_format = "LOG_FMT_VERBOSE", "LOG_FMT_TERSE"
+ * \{
  */
 #define LOG_FMT_VERBOSE   1
 #define LOG_FMT_TERSE     0
+/** \} */
 
 #if LOG_FORMAT == LOG_FMT_VERBOSE
        #define LOG_PRINT(str_level, str,...)    kprintf("%s():%d:%s: " str, __func__, __LINE__, str_level, ## __VA_ARGS__)