@@ -26,12 +26,6 @@ static partial class LogMessages
2626 Message = "Opened connection to {Host}:{Port}/{Database}" ) ]
2727 internal static partial void OpenedConnection ( ILogger logger , string Host , int Port , string Database , string ConnectionString , int ConnectorId ) ;
2828
29- [ LoggerMessage (
30- EventId = NpgsqlEventId . OpenedConnection ,
31- Level = LogLevel . Debug ,
32- Message = "Opened multiplexing connection to {Host}:{Port}/{Database}" ) ]
33- internal static partial void OpenedMultiplexingConnection ( ILogger logger , string Host , int Port , string Database , string ConnectionString ) ;
34-
3529 [ LoggerMessage (
3630 EventId = NpgsqlEventId . ClosingConnection ,
3731 Level = LogLevel . Trace ,
@@ -44,12 +38,6 @@ static partial class LogMessages
4438 Message = "Closed connection to {Host}:{Port}/{Database}" ) ]
4539 internal static partial void ClosedConnection ( ILogger logger , string Host , int Port , string Database , string ConnectionString , int ConnectorId ) ;
4640
47- [ LoggerMessage (
48- EventId = NpgsqlEventId . ClosedConnection ,
49- Level = LogLevel . Debug ,
50- Message = "Closed multiplexing connection to {Host}:{Port}/{Database}" ) ]
51- internal static partial void ClosedMultiplexingConnection ( ILogger logger , string Host , int Port , string Database , string ConnectionString ) ;
52-
5341 [ LoggerMessage (
5442 EventId = NpgsqlEventId . OpeningPhysicalConnection ,
5543 Level = LogLevel . Trace ,
@@ -134,12 +122,6 @@ static partial class LogMessages
134122 Message = "Exception while closing connector" ) ]
135123 internal static partial void ExceptionWhenClosingPhysicalConnection ( ILogger logger , int ConnectorId , Exception exception ) ;
136124
137- [ LoggerMessage (
138- EventId = NpgsqlEventId . ExceptionWhenOpeningConnectionForMultiplexing ,
139- Level = LogLevel . Error ,
140- Message = "Exception opening a connection for multiplexing" ) ]
141- internal static partial void ExceptionWhenOpeningConnectionForMultiplexing ( ILogger logger , Exception exception ) ;
142-
143125 [ LoggerMessage (
144126 Level = LogLevel . Trace ,
145127 Message = "Start user action" ) ]
@@ -254,12 +236,6 @@ internal static partial void BatchExecutionCompletedWithParameters(
254236 Message = "Deriving Parameters for query: {CommandText}" ) ]
255237 internal static partial void DerivingParameters ( ILogger logger , string CommandText , int ConnectorId ) ;
256238
257- [ LoggerMessage (
258- EventId = NpgsqlEventId . ExceptionWhenWritingMultiplexedCommands ,
259- Level = LogLevel . Error ,
260- Message = "Exception while writing multiplexed commands" ) ]
261- internal static partial void ExceptionWhenWritingMultiplexedCommands ( ILogger logger , int ConnectorId , Exception exception ) ;
262-
263239 [ LoggerMessage (
264240 Level = LogLevel . Trace ,
265241 Message = "Cleaning up reader" ) ]
0 commit comments