Skip to content

Commit

Permalink
Updates README.md.
Browse files Browse the repository at this point in the history
Signed-off-by: JU4N98 <[email protected]>
  • Loading branch information
JU4N98 committed Nov 14, 2023
1 parent dcbe30d commit 8eacf90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/sidecar/sidecar.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func (s *Sidecar) CertReadyChan() <-chan struct{} {
func (s *Sidecar) updateCertificates(svidResponse *workloadapi.X509Context) {
s.config.Log.Debug("Updating X.509 certificates")
err := s.dumpBundles(svidResponse)
s.config.Log.Debug("X.509 certificates updated")
s.config.Log.Info("X.509 certificates updated")

if err != nil {
s.config.Log.WithError(err).Error("Unable to dump bundle")
Expand Down Expand Up @@ -260,7 +260,7 @@ func (s *Sidecar) updateJWTBundle(jwkSet *jwtbundle.Set) {
}

s.writeJSON(s.config.JWTBundleFilename, bundles)
s.config.Log.Debug("JWT bundle updated")
s.config.Log.Info("JWT bundle updated")
}

func (s *Sidecar) fetchJWTSVID(options ...workloadapi.ClientOption) (*jwtsvid.SVID, error) {
Expand Down Expand Up @@ -326,7 +326,7 @@ func (s *Sidecar) performJWTSVIDUpdate(options ...workloadapi.ClientOption) (*jw
return nil, err
}

s.config.Log.Debug("JWT SVID updated")
s.config.Log.Info("JWT SVID updated")
return jwtSVID, nil
}

Expand Down

0 comments on commit 8eacf90

Please sign in to comment.