在编写程序后,我们可以随手在需要的地方加入打印信息,同时需要考虑如下事项:
a) 只有在需要的地方加入,不能滥用。
b) 一定要有一个全局的开关,在不需要或者产品发布的时候,关闭输出,或者降低日志输出的频率。
要通过重定义的方式,将所有的日志输出指令定义到合适的输出路径,当需要修 改输出路径的时候,只要修改重定义的部分即可。否则需要在整个代码中修改, 就麻烦了。
结合上面的注意事项,我们可以按照如下步骤实现一个小型的日志输出系统。
/*
* debug control, you can switch on (delete 'x' suffix)
* to enable log output and assert mechanism
*/
#define CONFIG_ENABLE_DEBUG
/*
定义ERR、INFO、DEBUG三个日志级别。
/*
* debug level,
* if is DEBUG_LEVEL_DISABLE, no log is allowed output,
* if is DEBUG_LEVEL_ERR, only ERR is allowed output,
* if is DEBUG_LEVEL_INFO, ERR and INFO are allowed output,
* if is DEBUG_LEVEL_DEBUG, all log are allowed output,
/* it can be change to others, such as file operations */
#include
#define PRINT printf
/*
* the macro to set debug level, you should call it
* once in the files you need use debug system
*/
#define DEBUG_SET_LEVEL(x) static int debug = x
需要在每一个需要日志输出的C文件中调用,如下:
/*
* define the debug level of this file,
* please see 'debug.h' for detail info
*/
DEBUG_SET_LEVEL(DEBUG_LEVEL_ERR);
#define ASSERT() \
do { \
PRINT("ASSERT: %s %s %d", \
__FILE__, __FUNCTION__, __LINE__); \
while (1); \
} while (0)
#define ERR(...) \
do { \
if (debug >= DEBUG_LEVEL_ERR) { \
PRINT(__VA_ARGS__); \
} \
} while (0)
…
debug_test.c
-----------------------------------------------------
#include "debug.h"
/*
* define the debug level of this file,
* please see 'debug.h' for detail info
*/
DEBUG_SET_LEVEL(DEBUG_LEVEL_ERR);
int main(void) {
ERR("This is a error message\n");
INFO("This is a info message\n");
DEBUG("This is a debug message\n");
ASSERT();
return 0;
}
Step8. 可以根据需要,修改容许输出的日志级别。
网站名称:如何用printf写一个自己的日志打印系统?
URL地址:http://www.csdahua.cn/qtweb/news49/469699.html
成都网站优化推广公司_创新互联,为您提供自适应网站、做网站、云服务器、服务器托管、用户体验、小程序开发
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网