(ctx context.Context, format string, v ...any)
| 182 | } |
| 183 | |
| 184 | func debugLogFunc(ctx context.Context, format string, v ...any) { |
| 185 | log.FromContext(ctx).WithField("origin", "go-redis").Debugf(format, v...) |
| 186 | } |
| 187 | |
| 188 | // newRedisClient returns a Redis client, which connects using correct client type. |
| 189 | func newRedisClient(conf *Config) *redis.Client { |
nothing calls this directly
no test coverage detected