Explorar el Código

fix logging statement

AjayTripathy hace 6 años
padre
commit
bd613bd7de
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  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 {