码迷,mamicode.com
首页 > 编程语言 > 详细

linux c++调试日志函数

时间:2019-06-06 00:36:28      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:define   函数   pac   error   inux   调试   ring   line   mat   

#ifndef MYLOG_H
#define MYLOG_H

#include <stdio.h>

#define __DEBUG__
#ifdef __DEBUG__  
#define DEBUG(format,...) printf("File: "__FILE__", Line: %d: "format"\n", __LINE__, ##__VA_ARGS__)  
#define detail(format, args...) printf("debug[%s|%s|%d]/t"format"\n",__FILE__,__func__,__LINE__,##args)
#define info(format, args...)   printf("info[%s|%s|%d]/t"format"\n",__FILE__,__func__,__LINE__,##args)
#define warn(format, args...)   printf("warn[%s|%s|%d]/t"format"\n",__FILE__,__func__,__LINE__,##args)
#define error(format, args...)  printf("error[%s|%s|%d]/t"format"\n",__FILE__,__func__,__LINE__,##args)
#else  
#define DEBUG(format,...)  
#define detail(format, args...)
#define info(format, args...) 
#define warn(format, args...) 
#define error(format, args...) 
#endif 

#endif

#include <iostream>
using namespace std;

int main() {  
  
    string straab = "asdf";
    DEBUG("aaa-%s",straab.c_str());

    return 0; 
}  

  

linux c++调试日志函数

标签:define   函数   pac   error   inux   调试   ring   line   mat   

原文地址:https://www.cnblogs.com/mingyue605/p/10982259.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!