码迷,mamicode.com
首页 > 系统相关 > 详细

Linux共享库 zlog日志

时间:2018-08-03 01:02:14      阅读:686      评论:0      收藏:0      [点我收藏+]

标签:for   span   input   stdarg.h   文件   ***   out   config   level   

[ global]
strict init    = false
buffer min = 1024
buffer max = 2MB    
rotate lock file=        /tmp/zlog.lock
[formats]
normal = "%d.%us [%V][%F:%L] %m%n"
[ rules ]
asr_level.*        "/home/test/asr.log";normal

注意:如果配置了rotate lock file项,在自己本机测试时候,注意删除一下zlog.lock文件,不然有可能锁住,导致zlog初始化失败

zlog参数配置详解
[formats]
%d    --表示时间,例如 2018-07-20 09:32:43
%us   --表示微妙,例如 991437
%F    --表示文件,例如 test_init.c
%V    --表示日志等级,例如 DEBUG,INFO
%L    --表示行号
%m    --表示用户输出信息
%n    --表示换行

normal = "%d.%us [%V][%F:%L] %m%n"

[rules]
类别名.*          --表示打印所有级别的日志信息
类别名.=DEBUG     --表示打印指定级别的日志
类别名.!DEBUG     --表示打印非DEBUG级别的日志
#ifndef __ASR_ZLOG_H_
#define __ASR_ZLOG_H_

#include "zlog.h"

/*日志类*/

extern zlog_category_t *zc;

//初始化zlog
int zlogInit(const char *pcConfigPath, const char *pcModelName);

//释放zlog
void zlogDestory();

#define FATAL_LOG(fmt,...) \
    zlog_fatal(zc,fmt,__VA_ARGS__);

#define ERROR_LOG(fmt,...) \
    zlog_error(zc,fmt,__VA_ARGS__);

#define WARN_LOG(fmt,...) \
    zlog_warn(zc,fmt,__VA_ARGS__);

#define NOTICE_LOG(fmt,...) \
    zlog_notice(zc,fmt,__VA_ARGS__);

#define INFO_LOG(fmt,...) \
    zlog_info(zc,fmt,__VA_ARGS__);

#define DEBUG_LOG(fmt,...) \
    zlog_debug(zc,fmt,__VA_ARGS__);

#endif
#include <stdarg.h>

#include "asr_log.h"
#include "comontype.h"

zlog_category_t *zc;


/********************************************************
zlog
*********************************************************/

/********************************************************
   Func Name: init
Date Created: 2018-7-20
 Description: 初始化
       Input: 
      Output: 
      Return: error code
     Caution: 
*********************************************************/
int zlogInit(IN const char *pcConfigPath,IN const char *pcModelName)
{
    int iRet = DEFAULT_ERROR;
    
    if (NULL == pcConfigPath || NULL == pcModelName)
    {
        iRet = PARAM_ERROR;
        return iRet;
    }

    iRet = zlog_init(pcConfigPath);
    if (iRet) {
        printf("init fail");
        return DEFAULT_ERROR;
    }
    zc = zlog_get_category(pcModelName);
    if (!zc) {
        printf("zlog_get_category fail\n");
        zlog_fini();
        return DEFAULT_ERROR;
    }

    return RESULT_OK;
}

/********************************************************
   Func Name: init
Date Created: 2018-7-20
 Description: 销毁zlog
       Input: 
      Output: 
      Return: 
     Caution: 
*********************************************************/
void zlogDestory()
{
    zlog_fini();
}

 

Linux共享库 zlog日志

标签:for   span   input   stdarg.h   文件   ***   out   config   level   

原文地址:https://www.cnblogs.com/zhanggaofeng/p/9410704.html

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