Skip to content

Commit

Permalink
Fix log.level configuration in frps.toml (fatedier#3655)
Browse files Browse the repository at this point in the history
```toml
log.level = info
```
changed to
```toml
log.level = "info"
```
  • Loading branch information
ShenHongFei authored Oct 10, 2023
1 parent 5eb8f3d commit 307d1bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conf/frps.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ enablePrometheus = true
# console or real logFile path like ./frps.log
log.to = "./frps.log"
# trace, debug, info, warn, error
log.level = info
log.level = "info"
log.maxDays = 3
# disable log colors when log.to is console, default is false
log.disablePrintColor = false
Expand Down

0 comments on commit 307d1bf

Please sign in to comment.