From 6508f928de7713900dfce6c637657109e30bfbdd Mon Sep 17 00:00:00 2001 From: Jon Bratseth Date: Wed, 3 Aug 2022 16:31:41 +0200 Subject: Remove println --- .../java/com/yahoo/vespa/hosted/provision/autoscale/Autoscaler.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/autoscale/Autoscaler.java b/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/autoscale/Autoscaler.java index 6f6f869a1c0..ac072639cfe 100644 --- a/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/autoscale/Autoscaler.java +++ b/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/autoscale/Autoscaler.java @@ -95,8 +95,6 @@ public class Autoscaler { allocationOptimizer.findBestAllocation(target, currentAllocation, clusterModel, limits); if (bestAllocation.isEmpty()) return Advice.dontScale(Status.insufficient, "No allocations are possible within configured limits"); - System.out.println("Current: " + currentAllocation); - System.out.println("Best: " + bestAllocation.get()); if (! worthRescaling(currentAllocation.realResources(), bestAllocation.get().realResources())) { if (bestAllocation.get().fulfilment() < 1) -- cgit v1.2.3