mirror of https://github.com/k3s-io/k3s
Merge pull request #39977 from justinsb/aws_fix_infof
Automatic merge from submit-queue AWS: Fix a few log messages Info -> Infof Get those `%q`-s out of my logs :-) ```release-note NONE ```pull/6/head
commit
e7950e6f49
|
@ -293,7 +293,7 @@ func (c *Cloud) ensureLoadBalancer(namespacedName types.NamespacedName, loadBala
|
|||
|
||||
// Update attributes if they're dirty
|
||||
if !reflect.DeepEqual(loadBalancerAttributes, foundAttributes) {
|
||||
glog.V(2).Info("Updating load-balancer attributes for %q", loadBalancerName)
|
||||
glog.V(2).Infof("Updating load-balancer attributes for %q", loadBalancerName)
|
||||
|
||||
modifyAttributesRequest := &elb.ModifyLoadBalancerAttributesInput{}
|
||||
modifyAttributesRequest.LoadBalancerName = aws.String(loadBalancerName)
|
||||
|
@ -351,7 +351,7 @@ func (c *Cloud) ensureLoadBalancerHealthCheck(loadBalancer *elb.LoadBalancerDesc
|
|||
return nil
|
||||
}
|
||||
|
||||
glog.V(2).Info("Updating load-balancer health-check for %q", name)
|
||||
glog.V(2).Infof("Updating load-balancer health-check for %q", name)
|
||||
|
||||
healthCheck := &elb.HealthCheck{}
|
||||
healthCheck.HealthyThreshold = &expectedHealthyThreshold
|
||||
|
|
Loading…
Reference in New Issue