claudiupb commented on this pull request.
@@ -1061,3 +1067,57 @@ int redis_count_err_and_disable(redisc_server_t *rsrv)
} return 0; } + +void print_redis_reply(int log_level, redisReply *rpl,int offset) +{ + int i; + char padding[MAXIMUM_NESTED_KEYS + 1]; + + if (redis_get_debug_level() < log_level) + return; +
Yes, this is a lot better. I will change the commit