Skip to content

Commit

Permalink
Merge pull request quarkusio#31545 from geertschuring/geertschuring-p…
Browse files Browse the repository at this point in the history
…atch-31536

Append System.lineSeparator() to config error messages
  • Loading branch information
gsmet authored Mar 3, 2023
2 parents 8982d17 + ac4354d commit f14cb40
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void validateConfigProperties(Set<ConfigValidationMetadata> properties) {
ConfigProducerUtil.getValue(property.getName(), effectivePropertyType, property.getDefaultValue(), config);
} catch (Exception e) {
msg.append("Failed to load config value of type ").append(effectivePropertyType).append(" for: ")
.append(property.getName());
.append(property.getName()).append(System.lineSeparator());
problems.add(property.getName());
suppressed.add(e);
}
Expand Down

0 comments on commit f14cb40

Please sign in to comment.