Skip to content

Commit

Permalink
remove logging message
Browse files Browse the repository at this point in the history
  • Loading branch information
bluedevelz committed Jan 10, 2023
1 parent 6ff12ce commit b248906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vault.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ func FetchSecrets(c *config) error {
if err != nil {
return err
}
log.Info().Msgf("Vault secret response json: %+v\n", string(body))
// log.Info().Msgf("Vault secret response json: %+v\n", string(body)) // <-- WARNING
secret := secret{}
if err = json.Unmarshal(body, &secret); err != nil {
log.Error().Msgf("vault-go: Unable to parse response from vault. The response was %s from vault.\n", resp.Status)
Expand Down

0 comments on commit b248906

Please sign in to comment.