Fix log.compress value

This commit is contained in:
Michael 2024-05-13 15:44:03 +02:00 committed by GitHub
parent a4aad5ce5c
commit d8a778b5cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -169,14 +169,14 @@ The default is not to perform compression.
```yaml tab="File (YAML)" ```yaml tab="File (YAML)"
log: log:
compress: 3 compress: true
``` ```
```toml tab="File (TOML)" ```toml tab="File (TOML)"
[log] [log]
compress = 3 compress = true
``` ```
```bash tab="CLI" ```bash tab="CLI"
--log.compress=3 --log.compress=true
``` ```