We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 987c746 commit c1413afCopy full SHA for c1413af
core/spring-boot/src/main/java/org/springframework/boot/logging/logback/DefaultLogbackConfiguration.java
@@ -18,6 +18,7 @@
18
19
import java.io.Console;
20
import java.nio.charset.Charset;
21
+import java.nio.charset.StandardCharsets;
22
23
import ch.qos.logback.classic.Level;
24
import ch.qos.logback.classic.encoder.PatternLayoutEncoder;
@@ -56,7 +57,7 @@
56
57
*/
58
class DefaultLogbackConfiguration {
59
- private static final String DEFAULT_CHARSET = Charset.defaultCharset().name();
60
+ private static final String DEFAULT_CHARSET = StandardCharsets.UTF_8.name();
61
62
private static final String NAME_AND_GROUP = "%esb(){APPLICATION_NAME}%esb{APPLICATION_GROUP}";
63
0 commit comments