diff --git a/clients/cache/redis.go b/clients/cache/redis.go index 86fa59a..a37f368 100644 --- a/clients/cache/redis.go +++ b/clients/cache/redis.go @@ -81,6 +81,8 @@ func (rc *RedisCache) Delete(ctx context.Context, key string) error { } func (rc *RedisCache) Healthcheck(ctx context.Context) error { + rc.Logger.Trace().Msg("redis healthcheck was called") + // Check if we can connect to Redis _, err := rc.client.Ping(ctx).Result() if err != nil {