Skip to content

Commit ac4354d

Browse files
geertschuringgsmet
authored andcommitted
Append System.lineSeparator() to config error messages
Suggestion to solve #31536
1 parent a74aa01 commit ac4354d

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

Lines changed: 1 addition & 1 deletion
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)