sdklog输出组件 这个文件用于定义sdk日志打印组件,log打印等级 参考Andriod Logcat 提供了多个打印函数, 开发者可以自行定义模块名称,统一模块打印等级宏
更多...
|
#define | LOG_DEBUG(fmt, ...) _printf(fmt,##__VA_ARGS__) |
|
#define | CI_LOG(debug, message, args...) do{}while(0) |
|
#define | _mprintf(fmt, ...) do{}while(0) |
|
#define | mprintf(fmt, args...) _mprintf(fmt, ## args) |
|
|
#define | ci_logverbose(comlevel, message, args...) CI_LOG(CI_LOG_VERBOSE, comlevel, message, ## args) |
| 日志打印–详细 更多...
|
|
#define | ci_logdebug(comlevel, message, args...) CI_LOG(CI_LOG_DEBUG, comlevel, message, ## args) |
| 日志打印–调试 更多...
|
|
#define | ci_loginfo(comlevel, message, args...) CI_LOG(CI_LOG_INFO, comlevel, message, ## args) |
| 日志打印–信息 更多...
|
|
#define | ci_logwarn(comlevel, message, args...) CI_LOG(CI_LOG_WARN, comlevel, message, ## args) |
| 日志打印–警告 更多...
|
|
#define | ci_logerr(comlevel, message, args...) CI_LOG(CI_LOG_ERROR, comlevel, message, ## args) |
| 日志打印–错误 更多...
|
|
#define | ci_logassert(comlevel, message, args...) CI_LOG(CI_LOG_ASSERT, comlevel, message, ## args) |
| 日志打印–断言 更多...
|
|
sdklog输出组件 这个文件用于定义sdk日志打印组件,log打印等级 参考Andriod Logcat 提供了多个打印函数, 开发者可以自行定义模块名称,统一模块打印等级宏
- 版本
- 1.0
- 日期
- 2019-01-09
- 版权所有
- Copyright (c) 2019 Chipintelli Technology Co., Ltd.