Skip to content

Commit

Permalink
Merge pull request #156 from jglick/println
Browse files Browse the repository at this point in the history
Missing newlines in messages from `RegistryKeyMaterialFactory`
  • Loading branch information
jglick authored Nov 7, 2024
2 parents 921729d + 774f1a3 commit 6b646c9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ public KeyMaterial materialize() throws IOException, InterruptedException {
if (configJsonPath.exists()) {
String configJson = configJsonPath.readToString();
if (StringUtils.isNotBlank(configJson)) {
launcher.getListener().getLogger().print("Using the existing docker config file.");
launcher.getListener().getLogger().println("Using the existing docker config file.");

JSONObject json = JSONObject.fromObject(configJson);
for (String property : BLACKLISTED_PROPERTIES) {
Object value = json.remove(property);
if (value != null) {
launcher.getListener().getLogger().print("Removing blacklisted property: " + property);
launcher.getListener().getLogger().println("Removing blacklisted property: " + property);
}
}

Expand Down

0 comments on commit 6b646c9

Please sign in to comment.