Skip to content

Commit

Permalink
hashicorpGH-5335 - Fixing go vet issue for Printf
Browse files Browse the repository at this point in the history
  • Loading branch information
jrnt30 committed Jun 2, 2016
1 parent 282b2aa commit 27fff77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/providers/aws/resource_aws_route.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ func resourceAwsRouteCreate(d *schema.ResourceData, meta interface{}) error {
route, err = findResourceRoute(conn, d.Get("route_table_id").(string), d.Get("destination_cidr_block").(string))

if err != nil {
log.Print("[DEBUG] Attempting to find route in route table %s again", d.Get("route_table_id").(string))
log.Printf("[DEBUG] Attempting to find route in route table %s again", d.Get("route_table_id").(string))
return resource.RetryableError(err)
}

Expand Down

0 comments on commit 27fff77

Please sign in to comment.