aboutsummaryrefslogtreecommitdiffstats
path: root/orchestrator
diff options
context:
space:
mode:
authortoby <smorgrav@yahoo-inc.com>2016-06-22 12:54:57 +0200
committertoby <smorgrav@yahoo-inc.com>2016-06-22 12:54:57 +0200
commite6376702fde5c5ded4c946e989c0af45a54db7ae (patch)
treec18d4d2ec9c9de48429cf150819a0354442b15a8 /orchestrator
parent65ed7f8d27200eeeb39a5316ccdda6cd11e29013 (diff)
Fix log formatting
Diffstat (limited to 'orchestrator')
-rw-r--r--orchestrator/src/main/java/com/yahoo/vespa/orchestrator/OrchestratorUtil.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/OrchestratorUtil.java b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/OrchestratorUtil.java
index 834e63a12ae..dd79e8c709f 100644
--- a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/OrchestratorUtil.java
+++ b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/OrchestratorUtil.java
@@ -120,7 +120,7 @@ public class OrchestratorUtil {
.collect(Collectors.toList());
if (appRefList.size() > 1) {
- String msg = String.format("ApplicationId '%s' was not unique but mapped to '%s", appId, appRefList);
+ String msg = String.format("ApplicationId '%s' was not unique but mapped to '%s'", appId, appRefList);
throw new ApplicationIdNotFoundException(msg);
}