Chinaunix首页 | 论坛 | 博客
  • 博客访问: 398924
  • 博文数量: 75
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 645
  • 用 户 组: 普通用户
  • 注册时间: 2015-06-03 18:24
文章分类

全部博文(75)

文章存档

2019年(1)

2018年(20)

2017年(14)

2016年(10)

2015年(30)

分类: LINUX

2015-10-09 21:50:49

  在写代码时,我们经常要调试程序。需要打印出调试信息!但是调试好后,我们又不希望有调试信息打印出来。

我们可以用下面的调试函数!
debug.c

点击(此处)折叠或打开

  1. #include"debug.h"

  2. /**/
  3. unsigned long gDebug_level = _DEBUG_Error_|_DEBUG_Info_|_DEBUG_Waring_;

  4. /**/
  5. void set_debug_level(unsigned long level)
  6. {
  7.     gDebug_level = level;
  8. }

debug.h

点击(此处)折叠或打开

  1. #ifndef _DEBUG_H
  2. #define _DEBUG_H

  3. #include<stdio.h>

  4. /**/
  5. #define _DEBUG_Waring_ 0x01ul
  6. #define _DEBUG_Info_ 0x02ul
  7. #define _DEBUG_Error_ 0x04ul

  8. /**/
  9. extern unsigned long gDebug_level;

  10. /**/
  11. #define _DEBUG_(level, format, args...) do{\
  12.         if(level & gDebug_level)\
  13.         {\
  14.             printf("[file:%s][func:%s][line:%d] ",__FILE__, __FUNCTION__, __LINE__);\
  15.             printf(format, ##args);\
  16.         }\
  17.     }while(0)

  18. /**/
  19. void set_debug_level(unsigned long level);

  20. #endif


阅读(1201) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~