From 2868b08d02d7da7039c926237065faca37780037 Mon Sep 17 00:00:00 2001 From: knqyf263 Date: Thu, 27 Jun 2024 10:38:47 +0400 Subject: [PATCH] chore(redis): change cache to scan cache in a log message Signed-off-by: knqyf263 --- pkg/cache/redis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cache/redis.go b/pkg/cache/redis.go index aed4e4087571..2a4a12bda3f7 100644 --- a/pkg/cache/redis.go +++ b/pkg/cache/redis.go @@ -88,7 +88,7 @@ func NewRedisCache(backend, caCertPath, certPath, keyPath string, enableTLS bool return RedisCache{}, xerrors.Errorf("failed to create Redis options: %w", err) } - log.Info("Redis cache", log.String("url", opts.BackendMasked())) + log.Info("Redis scan cache", log.String("url", opts.BackendMasked())) options, err := redis.ParseURL(opts.Backend) if err != nil { return RedisCache{}, xerrors.Errorf("failed to parse Redis URL: %w", err)