Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
taoliult committed Sep 26, 2024
1 parent f519458 commit ee14a28
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1749,9 +1749,14 @@ private void checkProfileCheck(String profileID) {
}
if (!profileCheckPropertyNames.isEmpty()) {
printStackTraceAndExit(
"One or more property names: " + profileCheckPropertyNames.toString()
+ " in profile " + profileID
+ " are misspelled.");
"The property names: "
+ profileCheckPropertyNames
.stream()
.sorted()
.collect(Collectors.joining(", "))
+ " in profile " + profileID
+ " (or its base profile)"
+ " are not recognized.");
}
}
}
Expand Down

0 comments on commit ee14a28

Please sign in to comment.