From f2b8b08651815336d51a0fe6d7bdd270f2bdcf51 Mon Sep 17 00:00:00 2001 From: "Timothy St. Clair" Date: Wed, 5 Oct 2016 16:58:23 -0500 Subject: [PATCH] Turn down hootloop logs in priorities. Hit once cluster is near capacity --- plugin/pkg/scheduler/algorithm/priorities/priorities.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/pkg/scheduler/algorithm/priorities/priorities.go b/plugin/pkg/scheduler/algorithm/priorities/priorities.go index 52b92c8c4d..7de63cfe05 100644 --- a/plugin/pkg/scheduler/algorithm/priorities/priorities.go +++ b/plugin/pkg/scheduler/algorithm/priorities/priorities.go @@ -48,7 +48,7 @@ func calculateUnusedScore(requested int64, capacity int64, node string) int64 { return 0 } if requested > capacity { - glog.V(2).Infof("Combined requested resources %d from existing pods exceeds capacity %d on node %s", + glog.V(4).Infof("Combined requested resources %d from existing pods exceeds capacity %d on node %s", requested, capacity, node) return 0 } @@ -67,7 +67,7 @@ func calculateUsedScore(requested int64, capacity int64, node string) int64 { return 0 } if requested > capacity { - glog.V(2).Infof("Combined requested resources %d from existing pods exceeds capacity %d on node %s", + glog.V(4).Infof("Combined requested resources %d from existing pods exceeds capacity %d on node %s", requested, capacity, node) return 0 }