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 f92841b commit c46cc8fCopy full SHA for c46cc8f
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