🔊 Add auth context cache miss log

This commit is contained in:
LittleSheep 2025-03-29 13:34:37 +08:00
parent 9cda542b01
commit 3d58ff2391

View File

@ -42,6 +42,7 @@ func GetAuthContext(sessionId uint) (models.AuthTicket, error) {
if val, err := cachekit.Get[models.AuthTicket](gap.Ca, key); err == nil {
ctx = val
} else {
log.Error().Err(err).Msg("Unable to get auth context cache")
ctx, err = CacheAuthContext(sessionId)
if err != nil {
log.Error().Err(err).Msg("Unable to cache auth context")