X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcfg%2Flog.h;h=08bd55e84871f95a03fae1dd7ca379386e307bf5;hb=c0b47b9b31223e15e4edc69ac66cafe572f3b0dd;hp=f490669265d4c6d5b3344ebc1b51b431e10dcc74;hpb=f481adc9d8e495b3a306c996a8e064ccdd70ac43;p=bertos.git diff --git a/bertos/cfg/log.h b/bertos/cfg/log.h index f4906692..08bd55e8 100644 --- a/bertos/cfg/log.h +++ b/bertos/cfg/log.h @@ -111,7 +111,7 @@ * also which print function are linked. * If you choose a low level of log you link all log function (error, warning and info), * but if choose a hight level you link only that have the priority egual or hight. - * The priority level go from error (most hight) to info (most low) (see cfg/debug.h + * The priority level go from error (highest) to info (lowest) (see cfg/debug.h * for more detail). * \{ */ @@ -132,9 +132,6 @@ #define LOG_FMT_TERSE 0 /* \} */ -#define LOG_SILENT LOG_FMT_TERSE /* OBSOLETE */ -#define LOG_VERBOSE LOG_FMT_VERBOSE /* OBSOLETE */ - #if LOG_FORMAT == LOG_FMT_VERBOSE #define LOG_PRINT(str_level, str,...) kprintf("%s():%d:%s: " str, __func__, __LINE__, str_level, ## __VA_ARGS__) #elif LOG_FORMAT == LOG_FMT_TERSE