소스 검색

fix logging statement

AjayTripathy 6 년 전
부모
커밋
bd613bd7de
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  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 {