zoukankan      html  css  js  c++  java
  • Sword zlog日志库使用

    配置文件*.conf
    配置文件具体内容如下:
    
    [global]
    #改变量可以不写,默认是true,如果使用设置为true时,Zlog就会严格检查所用格式和规则,否则,忽略所用格式和规则。
    strict init = true
    buffer min = 1024
    buffer max = 2048
    #转档指定锁文件,用于保证多进程下日志安全转档,使用默认的配置文件为锁文件。
    #rotate lock file = zlog.lock
    #日志访问权限,600 只允许当前用户访问
    file perms = 600
    [formats]
    #使用默认日志输出格式  "%d %V [%p %F %L] %m%n" 输出日志格式为:%-5V按照日志级别按照左对齐
    #2012-12-13 10:23:29 INFO [31668:test_hello.c:41] hello, zlog  
    simple    = "%d.%-8.8us %-5V [%-8.8p.%-8.8t %F %L] %m%n"
    #simple    = "%d.%ms %m%n"
    #simple2    = "%d.%us %m%n"
     
    [rules]
    #优先级从低到高 debug info notice warn fatal  debug大于等于debug的优先级都能给通过debug输出。
    my_cat.*        >stderr;
    #当hello.txt文件大小大于10MB时,会将hello.txt->hello.txt.0 0代表不删除任何文件
    my_cat.INFO        "hello.txt",10kb * 3 ~ "hello.txt.#r";simple
    #my_cat.INFO        "hello.txt",1MB ~ "hello-%d(%Y%m%d).#2s.txt";simple
    #my_cat.INFO        "hello.txt",1MB;simple
    #my_cat.INFO        "hello.txt",1MB;simple
  • 相关阅读:
    C# Renci.SshNet SFTP--FTP 操作help
    点评js异步加载的4种方式
    C# csv 操作类
    Redis分布式缓存
    webApi FileReader
    Web API 2 authentication with JWT
    Web SQL
    jQuery图像照片剪裁插件Jcrop中文演示
    使用ajax跨域withCredentials的作用
    JavaScript 判断浏览器类型及版本
  • 原文地址:https://www.cnblogs.com/zhanggaofeng/p/11108564.html
Copyright © 2011-2022 走看看