mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 11:03:13 +00:00
33 lines
415 B
Markdown
33 lines
415 B
Markdown
# Log
|
|
|
|
### Structure
|
|
|
|
```json
|
|
{
|
|
"log": {
|
|
"disabled": false,
|
|
"level": "info",
|
|
"output": "box.log",
|
|
"timestamp": true
|
|
}
|
|
}
|
|
|
|
```
|
|
|
|
### Fields
|
|
|
|
#### disabled
|
|
|
|
Disable logging, no output after start.
|
|
|
|
#### level
|
|
|
|
Log level. One of: `trace` `debug` `info` `warn` `error` `fatal` `panic`.
|
|
|
|
#### output
|
|
|
|
Output file path. Will not write log to console after enable.
|
|
|
|
#### timestamp
|
|
|
|
Add time to each line. |