fix log reference

This commit is contained in:
clint shryock 2015-11-16 17:14:02 -06:00
parent 6cb5ce2a7c
commit 901e5fbf9f
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ func resourceAwsEcsServiceRead(d *schema.ResourceData, meta interface{}) error {
// Status==INACTIVE means deleted service
if *service.Status == "INACTIVE" {
log.Printf("[DEBUG] Removing ECS service %s because it's INACTIVE", service.ServiceArn)
log.Printf("[DEBUG] Removing ECS service %q because it's INACTIVE", service.ServiceArn)
d.SetId("")
return nil
}