From 9ccbe5b39a79c8c59d911b21ad6db21442d54eb2 Mon Sep 17 00:00:00 2001 From: Liran Polak Date: Wed, 31 Oct 2018 16:50:46 +0200 Subject: [PATCH] fix: do not log unmatched groups as warnings --- pkg/resources/spotinst/resources.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/resources/spotinst/resources.go b/pkg/resources/spotinst/resources.go index f5ad6011e5..d35d8f75a9 100644 --- a/pkg/resources/spotinst/resources.go +++ b/pkg/resources/spotinst/resources.go @@ -106,7 +106,7 @@ func GetCloudGroups(svc Service, cluster *kops.Cluster, instancegroups []*kops.I if instancegroup == nil { if warnUnmatched { - glog.Warningf("Found group with no corresponding instance group %q", group.Name()) + glog.V(2).Infof("Found group with no corresponding instance group %q", group.Name()) } continue }