Przeglądaj źródła

fix logging statement

AjayTripathy 6 lat temu
rodzic
commit
bd613bd7de
1 zmienionych plików z 0 dodań i 1 usunięć
  1. 0 1
      costmodel/aggregations.go

+ 0 - 1
costmodel/aggregations.go

@@ -117,7 +117,6 @@ func ComputeIdleCoefficient(costData map[string]*CostData, cli prometheusClient.
 		if err != nil || totalClusterCost == 0.0 {
 			return nil, err
 		}
-		klog.Infof("TOTAL CLUSTER COST %f", totalClusterCost)
 		totalClusterCostOverWindow := (totalClusterCost / 730) * windowDuration.Hours()
 		totalContainerCost := 0.0
 		for _, costDatum := range costData {