summaryrefslogtreecommitdiffstats
path: root/controller-server
diff options
context:
space:
mode:
authorJon Marius Venstad <jvenstad@yahoo-inc.com>2017-11-17 14:26:07 +0100
committerJon Marius Venstad <jvenstad@yahoo-inc.com>2017-11-17 14:26:07 +0100
commit833c8f6b6c6e0e611e9ed8ea6e2d7fe9f56b2c48 (patch)
tree9de8fc10f904bde9c5367acba621dc6f9a409d6a /controller-server
parent347f2feb3751635b57ea7a39b0c942bd35737298 (diff)
Reduce to FINER
Diffstat (limited to 'controller-server')
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/ApplicationController.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/ApplicationController.java b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/ApplicationController.java
index 5c6cea43e76..1645c908cfc 100644
--- a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/ApplicationController.java
+++ b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/ApplicationController.java
@@ -501,7 +501,7 @@ public class ApplicationController {
return Optional.of(new InstanceEndpoints(endPointUrls));
}
catch (RuntimeException e) {
- log.log(Level.WARNING, "Failed to get endpoint information for " + deploymentId, e);
+ log.log(Level.FINER, "Failed to get endpoint information for " + deploymentId, e);
return Optional.empty();
}
}