We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9d40a5 commit 916dc05Copy full SHA for 916dc05
src/cart/src/cartstore/ValkeyCartStore.cs
@@ -88,7 +88,7 @@ private void EnsureRedisConnected()
88
89
if (_logger.IsEnabled(LogLevel.Debug))
90
{
91
- _logger.LogDebug("Connecting to Redis: {_connectionString}", _connectionString);
+ _logger.LogDebug("Connecting to Redis: {connectionString}", _connectionString);
92
}
93
94
_redis = ConnectionMultiplexer.Connect(_redisConnectionOptions);
@@ -110,7 +110,7 @@ private void EnsureRedisConnected()
110
111
112
113
- _logger.LogDebug("Small test result: {res}", res);
+ _logger.LogDebug("Small test result: {result}", res);
114
115
116
_redis.InternalError += (_, e) => { Console.WriteLine(e.Exception); };
0 commit comments