Fix log.level configuration in frps.toml (#3655)

```toml
log.level = info
```
changed to
```toml
log.level = "info"
```
This commit is contained in:
沈鸿飞 2023-10-10 19:45:33 +08:00 committed by GitHub
parent 5eb8f3db03
commit 307d1bfa3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ enablePrometheus = true
# console or real logFile path like ./frps.log # console or real logFile path like ./frps.log
log.to = "./frps.log" log.to = "./frps.log"
# trace, debug, info, warn, error # trace, debug, info, warn, error
log.level = info log.level = "info"
log.maxDays = 3 log.maxDays = 3
# disable log colors when log.to is console, default is false # disable log colors when log.to is console, default is false
log.disablePrintColor = false log.disablePrintColor = false