From e586d05a7d8e55b94e70faea5a4f8cfbea5316ff Mon Sep 17 00:00:00 2001 From: James Stremick Date: Mon, 27 Apr 2015 17:30:47 -0400 Subject: [PATCH] Remove some unecessary debug output I added --- builtin/providers/aws/resource_aws_eip.go | 1 - 1 file changed, 1 deletion(-) diff --git a/builtin/providers/aws/resource_aws_eip.go b/builtin/providers/aws/resource_aws_eip.go index 8956ed507..4111780bb 100644 --- a/builtin/providers/aws/resource_aws_eip.go +++ b/builtin/providers/aws/resource_aws_eip.go @@ -123,7 +123,6 @@ func resourceAwsEipRead(d *schema.ResourceData, meta interface{}) error { describeAddresses, err := ec2conn.DescribeAddresses(req) if err != nil { if ec2err, ok := err.(aws.APIError); ok && ec2err.Code == "InvalidAllocationID.NotFound" { - log.Printf("[DEBUG] EIP describe configuration: %#v", req) d.SetId("") return nil }