Skip to content

Commit

Permalink
fix: send log output to stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusramberg committed Dec 12, 2024
1 parent f742c24 commit 6ca40a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func getJWT(pemBytes []byte, appID string) (string, error) {
func getSecretVal(pemPath string) ([]byte, error) {
// get the secret value
runtime, err := vals.New(vals.Options{
LogOutput: os.Stdout,
LogOutput: os.Stderr,
CacheSize: 100,
ExcludeSecret: true,
FailOnMissingKeyInMap: true,
Expand Down

0 comments on commit 6ca40a5

Please sign in to comment.