github.com/inazumav/sing-box@v0.0.0-20230926072359-ab51429a14f1/docs/configuration/log/index.zh.md (about)

     1  # 日志
     2  
     3  ### 结构
     4  
     5  ```json
     6  {
     7    "log": {
     8      "disabled": false,
     9      "level": "info",
    10      "output": "box.log",
    11      "timestamp": true
    12    }
    13  }
    14  
    15  ```
    16  
    17  ### 字段
    18  
    19  #### disabled
    20  
    21  禁用日志,启动后不输出日志。
    22  
    23  #### level
    24  
    25  日志等级,可选值:`trace` `debug` `info` `warn` `error` `fatal` `panic`。
    26  
    27  #### output
    28  
    29  输出文件路径,启动后将不输出到控制台。
    30  
    31  #### timestamp
    32  
    33  添加时间到每行。