Redis Profiler​
The easiest way to view your App's executed Redis commands is by enabling the Admin Profiling UI where it's built-in Redis Profiling will show generated queries in context with your other App events:
Logging Executed Redis Commands​
Alternatively you can see what commands Redis Client executes by configuring it to log verbose debug info with:
RedisConfig.EnableVerboseLogging = true;
LogManager.LogFactory = new ConsoleLogFactory(debugEnabled:true);
Where it will log verbose commands Redis clients executes to the Console.