Skip to content

Commit

Permalink
Merge pull request #4 from DelineaXPM/endlesstrax-patch1
Browse files Browse the repository at this point in the history
Use correct logging Print function
  • Loading branch information
Ricky White authored Jun 15, 2022
2 parents ebe2e4f + 38dc5b8 commit dd5cafe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resource_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func resourceClientCreate(d *schema.ResourceData, meta interface{}) error {
dsv, err := vault.New(meta.(vault.Configuration))

if err != nil {
log.Printf("[DEBUG] configuration error", err)
log.Print("[DEBUG] configuration error", err)
return err
}

Expand All @@ -36,7 +36,7 @@ func resourceClientDelete(d *schema.ResourceData, meta interface{}) error {
dsv, err := vault.New(meta.(vault.Configuration))

if err != nil {
log.Printf("[DEBUG] configuration error", err)
log.Print("[DEBUG] configuration error", err)
return err
}
log.Printf("[DEBUG] getting client %s", clientID)
Expand Down

0 comments on commit dd5cafe

Please sign in to comment.