Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Threading;
Expand All @@ -11,11 +12,8 @@
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;

using System.Diagnostics;

using StackExchange.Redis.Extensions.Core.Abstractions;
using StackExchange.Redis.Extensions.Core.Configuration;
using StackExchange.Redis.Extensions.Core.Extensions;
using StackExchange.Redis.Extensions.Core.Logging;
using StackExchange.Redis.Extensions.Core.Models;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ internal static partial class LogMessages
Message = "Redis connection pool initialized: {PoolSize} connections to {Endpoint} in {ElapsedMs}ms")]
public static partial void PoolInitialized(ILogger logger, int poolSize, string endpoint, long elapsedMs);

[LoggerMessage(EventId = 1002, Level = LogLevel.Debug,
[LoggerMessage(EventId = 1002, Level = LogLevel.Debug, SkipEnabledCheck = true, // Check by the caller
Message = "Using connection {ConnectionHash} with {Outstanding} outstanding commands")]
public static partial void ConnectionSelected(ILogger logger, int connectionHash, long outstanding);

Expand Down
Loading