diff --git a/redis/redis.go b/redis/redis.go index f7f22e8..ce6189e 100644 --- a/redis/redis.go +++ b/redis/redis.go @@ -2,7 +2,6 @@ package redis import ( "bufio" - "log" "strconv" "strings" @@ -164,7 +163,7 @@ func (m *RedisMatcher) parseResponse(matchCtx *osm.MatchCtx, response string) { scanner := bufio.NewScanner(strings.NewReader(response)) for scanner.Scan() { line := scanner.Text() - log.Println(line) + // log.Println(line) if strings.Compare(line, "") == 0 { break }