Allow different log level for FILE and CONSOLE appender

- java.util.logging isn't supported yet

See gh-32076
This commit is contained in:
Yubao Liu
2022-08-15 19:29:36 +08:00
committed by Moritz Halbritter
parent e34d5812ba
commit 6ba5329a79
9 changed files with 58 additions and 0 deletions

View File

@@ -336,6 +336,10 @@ To help with the customization, some other properties are transferred from the S
| `CONSOLE_LOG_CHARSET`
| The charset to use for console logging.
| configprop:logging.threshold.console[]
| `CONSOLE_LOG_THRESHOLD`
| The log level threshold to use for console logging.
| configprop:logging.pattern.file[]
| `FILE_LOG_PATTERN`
| The log pattern to use in a file (if `LOG_FILE` is enabled).
@@ -344,6 +348,10 @@ To help with the customization, some other properties are transferred from the S
| `FILE_LOG_CHARSET`
| The charset to use for file logging (if `LOG_FILE` is enabled).
| configprop:logging.threshold.file[]
| `FILE_LOG_THRESHOLD`
| The log level threshold to use for file logging.
| configprop:logging.pattern.level[]
| `LOG_LEVEL_PATTERN`
| The format to use when rendering the log level (default `%5p`).