Remove some unecessary debug output I added

This commit is contained in:
James Stremick 2015-04-27 17:30:47 -04:00
parent 244639cf3d
commit e586d05a7d
1 changed files with 0 additions and 1 deletions

View File

@ -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
}