Closed
Description
Following #23827, default charset where defined for a base logback configuration in 5e26954, as ${CONSOLE_LOG_CHARSET:-default}
and ${FILE_LOG_CHARSET:-default}
.
Unfortunately, logback interprets that as Charset.forName("default")
, which taking a look at sun.nio.cs.StandardCharsets$Aliases
is hardcoded to return ASCII. I feel like Charset.defaultCharset()
would be a more natural choice.