From 5378d904a208540ac7cd37330eb997e92c15a5a0 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 6 May 2015 11:43:36 -0700 Subject: [PATCH] provider/aws: remove debug --- builtin/providers/aws/resource_aws_elb.go | 1 - 1 file changed, 1 deletion(-) diff --git a/builtin/providers/aws/resource_aws_elb.go b/builtin/providers/aws/resource_aws_elb.go index 97e9d4980..6a44a8917 100644 --- a/builtin/providers/aws/resource_aws_elb.go +++ b/builtin/providers/aws/resource_aws_elb.go @@ -291,7 +291,6 @@ func resourceAwsElbRead(d *schema.ResourceData, meta interface{}) error { d.Set("idle_timeout", lbAttrs.ConnectionSettings.IdleTimeout) d.Set("connection_draining", lbAttrs.ConnectionDraining.Enabled) d.Set("connection_draining_timeout", lbAttrs.ConnectionDraining.Timeout) - log.Printf("READ: %#v", *lbAttrs.ConnectionDraining.Timeout) resp, err := elbconn.DescribeTags(&elb.DescribeTagsInput{ LoadBalancerNames: []*string{lb.LoadBalancerName},