From aeb7428c895b5fe4757a8c1a5d47592ae8708a49 Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Mon, 15 Jan 2018 15:06:43 -0500 Subject: [PATCH] Log message at a better level We don't really need to log this meessage at level 1. --- pkg/cloudprovider/providers/openstack/openstack_instances.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cloudprovider/providers/openstack/openstack_instances.go b/pkg/cloudprovider/providers/openstack/openstack_instances.go index 981ff7b9f89..c1031e4f5e9 100644 --- a/pkg/cloudprovider/providers/openstack/openstack_instances.go +++ b/pkg/cloudprovider/providers/openstack/openstack_instances.go @@ -43,7 +43,7 @@ func (os *OpenStack) Instances() (cloudprovider.Instances, bool) { return nil, false } - glog.V(1).Info("Claiming to support Instances") + glog.V(4).Info("Claiming to support Instances") return &Instances{ compute: compute,