Skip to content

Commit

Permalink
Change error log style
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoreni committed Sep 28, 2018
1 parent fd77a5b commit 0b9d8ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/resource_aws_pinpoint_app.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func resourceAwsPinpointAppCreate(d *schema.ResourceData, meta interface{}) erro

output, err := pinpointconn.CreateApp(req)
if err != nil {
return fmt.Errorf("[ERROR] creating Pinpoint app: %s", err)
return fmt.Errorf("error creating Pinpoint app: %s", err)
}

d.SetId(*output.ApplicationResponse.Id)
Expand Down

0 comments on commit 0b9d8ff

Please sign in to comment.