Skip to content

Commit 6b646c9

Browse files
authored
Merge pull request #156 from jglick/println
Missing newlines in messages from `RegistryKeyMaterialFactory`
2 parents 921729d + 774f1a3 commit 6b646c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/jenkinsci/plugins/docker/commons/impl/RegistryKeyMaterialFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,13 @@ public KeyMaterial materialize() throws IOException, InterruptedException {
8181
if (configJsonPath.exists()) {
8282
String configJson = configJsonPath.readToString();
8383
if (StringUtils.isNotBlank(configJson)) {
84-
launcher.getListener().getLogger().print("Using the existing docker config file.");
84+
launcher.getListener().getLogger().println("Using the existing docker config file.");
8585

8686
JSONObject json = JSONObject.fromObject(configJson);
8787
for (String property : BLACKLISTED_PROPERTIES) {
8888
Object value = json.remove(property);
8989
if (value != null) {
90-
launcher.getListener().getLogger().print("Removing blacklisted property: " + property);
90+
launcher.getListener().getLogger().println("Removing blacklisted property: " + property);
9191
}
9292
}
9393

0 commit comments

Comments
 (0)