Remove syncing $redisKey log message

This info message just pollutes the logs and
for debugging we log the execution anyway.
This commit is contained in:
Eric Lippmann 2021-10-27 11:01:00 +02:00
parent 8ce917d45a
commit 43bcd2bbee

View file

@ -72,8 +72,6 @@ type HPair struct {
func (c *Client) HYield(ctx context.Context, key string) (<-chan HPair, <-chan error) {
pairs := make(chan HPair, c.Options.HScanCount)
c.logger.Infof("Syncing %s", key)
return pairs, com.WaitAsync(contracts.WaiterFunc(func() error {
var counter com.Counter
defer c.log(ctx, key, &counter).Stop()