Sapan Vashishth
Sapan Vashishth

Reputation: 313

log Redis commands fired by Redisson Java client

Is there any available logger that can be used to show the commands executed by Redisson to Redis? e.g. like hibernate show sql flag.

Something like when code does redisson.getJsonBucket().set() then the respective redis command JSON.SET is logged.

Thanks.

Upvotes: 0

Views: 239

Answers (1)

Nikita Koksharov
Nikita Koksharov

Reputation: 10803

You need to set trace logging level for org.redisson.client.handler package.

Upvotes: 1

Related Questions