Skip to content

Commit

Permalink
emergency: log access cache
Browse files Browse the repository at this point in the history
  • Loading branch information
SamMHD committed Feb 24, 2024
1 parent 7103c8d commit fbef72c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/auth/authenticator_cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ func (a *Authenticator) buildNewWebservicesCache(
}
}

a.logger.Info("webservice access cache built successfully", "len", len(newWebservicesCache))
a.logger.Info("webservice access cache built successfully", "len", len(newWebservicesCache), "content", newWebservicesCache)
return &newWebservicesCache
}

Expand Down Expand Up @@ -199,7 +199,7 @@ func (a *Authenticator) buildNewAccessTokensCache(
}
}

a.logger.Info("access token cache built successfully", "len", len(newAccessTokensCache))
a.logger.Info("access token cache built successfully", "len", len(newAccessTokensCache), "content", newAccessTokensCache)
return &newAccessTokensCache
}

Expand Down

0 comments on commit fbef72c

Please sign in to comment.