From 774f1a3158739dfc928414ed4bee61bc3ade92ff Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Fri, 1 Nov 2024 12:15:16 -0400 Subject: [PATCH] Missing newlines in messages from `RegistryKeyMaterialFactory` --- .../docker/commons/impl/RegistryKeyMaterialFactory.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/jenkinsci/plugins/docker/commons/impl/RegistryKeyMaterialFactory.java b/src/main/java/org/jenkinsci/plugins/docker/commons/impl/RegistryKeyMaterialFactory.java index 79aa44d..e2ca9dc 100644 --- a/src/main/java/org/jenkinsci/plugins/docker/commons/impl/RegistryKeyMaterialFactory.java +++ b/src/main/java/org/jenkinsci/plugins/docker/commons/impl/RegistryKeyMaterialFactory.java @@ -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); } }