Skip to content

Commit 7b704fb

Browse files
committed
builtin/providers/heroku: vet fix
Fixes the following vet reports: builtin/providers/heroku/resource_heroku_app.go:192: arg vs for printf verb %s of wrong type: bool builtin/providers/heroku/resource_heroku_app.go:198: arg vs for printf verb %s of wrong type: bool
1 parent 4f3f85b commit 7b704fb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

builtin/providers/heroku/resource_heroku_app.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,13 @@ func resourceHerokuOrgAppCreate(d *schema.ResourceData, meta interface{}) error
189189

190190
if v := d.Get("organization.0.personal"); v != nil {
191191
vs := v.(bool)
192-
log.Printf("[DEBUG] Organization Personal: %s", vs)
192+
log.Printf("[DEBUG] Organization Personal: %t", vs)
193193
opts.Personal = &vs
194194
}
195195

196196
if v := d.Get("organization.0.locked"); v != nil {
197197
vs := v.(bool)
198-
log.Printf("[DEBUG] Organization locked: %s", vs)
198+
log.Printf("[DEBUG] Organization locked: %t", vs)
199199
opts.Locked = &vs
200200
}
201201

0 commit comments

Comments
 (0)