From 8eacf90084795bd3c8654f7974390efb068eef1b Mon Sep 17 00:00:00 2001 From: JU4N98 Date: Tue, 14 Nov 2023 10:49:15 -0300 Subject: [PATCH] Updates README.md. Signed-off-by: JU4N98 --- pkg/sidecar/sidecar.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/sidecar/sidecar.go b/pkg/sidecar/sidecar.go index 0f930045..d3ec2f30 100644 --- a/pkg/sidecar/sidecar.go +++ b/pkg/sidecar/sidecar.go @@ -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") @@ -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) { @@ -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 }