免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 867 | 回复: 0
打印 上一主题 下一主题

[学习分享] DEBUG_LOG output [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2016-01-04 20:27 |只看该作者 |倒序浏览
#include <stdio.h>
#include <stdarg.h>
#include <sys/stat.h>
#include <time.h>
#include <stdlib.h>
#define LOG_SWITCH "/tmp/log_file"
#define LOG_FILE_SIZE 1024 * 1024
void print_log(const char * fmt , ... )
{
    va_list args;
    time_t sec;
    struct tm * ltm;
    FILE *lfp;
    struct stat ST;
    if( stat(LOG_SWITCH,&ST) == 0 )
    {
        if(ST.st_size > LOG_FILE_SIZE)
        {
           lfp = fopen(LOG_SWITCH, "w");   
        }
        else
        {
            lfp = fopen(LOG_SWITCH, "a");
        }
    }
    else
    {
        return;
    }
    sec = time(NULL);
    ltm = localtime(&sec);
    fprintf(lfp,"%04d-%02d-%02d/%02d:%02d:%02d ",ltm->tm_year+1900,ltm->tm_mon+1,ltm->tm_mday,\
                            ltm->tm_hour,ltm->tm_min,ltm->tm_sec);
    va_start(args,fmt);
    vfprintf(lfp,fmt,args);
    va_end(args);
    fclose(lfp);
}
//description
//judge whether the LOG_SWITCH is exist or not,if exist ,output the debug info to the LOG_SWITCH  . else output nothing
//one of the examples
int main(void)
{
    print_log("[rayklaus][%s:%s:%d]\n",__FILE__,__FUNCTION__,__LINE__);
    print_log("[rayklaus][%s:%s:%d]\n",__FILE__,__FUNCTION__,__LINE__);
    print_log("[rayklaus][%s:%s:%d]\n",__FILE__,__FUNCTION__,__LINE__);
    print_log("[rayklaus][%s:%s:%d]\n",__FILE__,__FUNCTION__,__LINE__);
    return 0;
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP