Skip to content

Commit f07634a

Browse files
Append System.lineSeparator() to config error messages
Suggestion to solve quarkusio#31536
1 parent 41921fa commit f07634a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/arc/runtime/src/main/java/io/quarkus/arc/runtime/ConfigRecorder.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public void validateConfigProperties(Set<ConfigValidationMetadata> properties) {
6060
ConfigProducerUtil.getValue(property.getName(), effectivePropertyType, property.getDefaultValue(), config);
6161
} catch (Exception e) {
6262
msg.append("Failed to load config value of type ").append(effectivePropertyType).append(" for: ")
63-
.append(property.getName());
63+
.append(property.getName()).append(System.lineSeparator());
6464
problems.add(property.getName());
6565
suppressed.add(e);
6666
}

0 commit comments

Comments
 (0)