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.
2 parents b65fe65 + bbedd1b commit 8a52f49Copy full SHA for 8a52f49
core/spring-boot/src/main/java/org/springframework/boot/logging/CorrelationIdFormatter.java
@@ -87,7 +87,7 @@ private CorrelationIdFormatter(List<Part> parts) {
87
* @return a formatted correlation id
88
*/
89
public String format(UnaryOperator<@Nullable String> resolver) {
90
- StringBuilder result = new StringBuilder();
+ StringBuilder result = new StringBuilder(this.blank.length());
91
formatTo(resolver, result);
92
return result.toString();
93
}
0 commit comments