1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #ifndef ATINY_LOG_H
- #define ATINY_LOG_H
- #include <link_log.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define LOG_DEBUG EN_LINK_LOG_LEVEL_DEBUG
- #define LOG_INFO EN_LINK_LOG_LEVEL_INFO
- #define LOG_WARNING EN_LINK_LOG_LEVEL_WARN
- #define LOG_ERR EN_LINK_LOG_LEVEL_ERROR
- #define LOG_FATAL EN_LINK_LOG_LEVEL_FATAL
- #ifdef CONFIG_ATINY_DEUG
- #define ATINY_LOG LINK_LOG
- #else
- #define ATINY_LOG(level,fmt, ...)
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|