Skip to content

Commit

Permalink
chore: log debug level instead of warn if session doesn't exist
Browse files Browse the repository at this point in the history
  • Loading branch information
lsjostro committed Nov 14, 2024
1 parent c290569 commit 1c019c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion authz/authz.go
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ func (s *Service) getSessionCookieData(ctx context.Context, req *auth.AttributeC

enc, err := s.store.Get(ctx, storeKey)
if err != nil {
slog.Warn("error getting session data from cache", slog.String("err", err.Error()))
slog.Debug("error getting session data from cache", slog.String("err", err.Error()))
return "", nil
}

Expand Down

0 comments on commit 1c019c7

Please sign in to comment.