summaryrefslogtreecommitdiffstats
path: root/vespa-maven-plugin
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2023-06-28 22:41:42 +0200
committerGitHub <noreply@github.com>2023-06-28 22:41:42 +0200
commitadd4989bcd2e18e939565da4e77ffca87b0f1258 (patch)
tree642abc40d9b9bdd58898dd4aa623c23673fd2ee7 /vespa-maven-plugin
parent87e717e046e51be12eebe66f3da8b0201c3174d0 (diff)
Fix '
Diffstat (limited to 'vespa-maven-plugin')
-rw-r--r--vespa-maven-plugin/src/main/java/ai/vespa/hosted/plugin/EffectiveServicesMojo.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/vespa-maven-plugin/src/main/java/ai/vespa/hosted/plugin/EffectiveServicesMojo.java b/vespa-maven-plugin/src/main/java/ai/vespa/hosted/plugin/EffectiveServicesMojo.java
index 8104b3c0330..344d848996f 100644
--- a/vespa-maven-plugin/src/main/java/ai/vespa/hosted/plugin/EffectiveServicesMojo.java
+++ b/vespa-maven-plugin/src/main/java/ai/vespa/hosted/plugin/EffectiveServicesMojo.java
@@ -49,8 +49,8 @@ public class EffectiveServicesMojo extends AbstractVespaDeploymentMojo {
Files.write(output, effectiveServices(services, zone, InstanceName.from(instance), tagz).getBytes(StandardCharsets.UTF_8));
getLog().info("Effective services for " + zone +
", instance " + instance +
- ( tags == null ? "" : ", tags '" + tagz) +
- "' written to " + output);
+ ( tags == null ? "" : ", tags '" + tagz + "' ") +
+ "written to " + output);
}
static String effectiveServices(File servicesFile, ZoneId zone, InstanceName instance, Tags tags) throws Exception {