@@ -47,7 +47,7 @@ internal static partial class Log
47
47
public static partial void AutoDetectedAurora57 ( ILogger logger , string sessionId , string hostName ) ;
48
48
49
49
[ LoggerMessage ( EventIds . SessionMadeConnection , LogLevel . Debug , "Session {SessionId} made connection; server version {ServerVersion}; connection ID {ConnectionId}; supports: compression {SupportsCompression}, attributes {SupportsAttributes}, deprecate EOF {SupportsDeprecateEof}, cached metadata {SupportsCachedMetadata}, SSL {SupportsSsl}, session track {SupportsSessionTrack}, pipelining {SupportsPipelining}, query attributes {SupportsQueryAttributes}" ) ]
50
- public static partial void SessionMadeConnection ( ILogger logger , string sessionId , string serverVersion , long connectionId , bool supportsCompression , bool supportsAttributes , bool supportsDeprecateEof , bool supportsCachedMetadata , bool supportsSsl , bool supportsSessionTrack , bool supportsPipelining , bool supportsQueryAttributes ) ;
50
+ public static partial void SessionMadeConnection ( ILogger logger , string sessionId , string serverVersion , int connectionId , bool supportsCompression , bool supportsAttributes , bool supportsDeprecateEof , bool supportsCachedMetadata , bool supportsSsl , bool supportsSessionTrack , bool supportsPipelining , bool supportsQueryAttributes ) ;
51
51
52
52
[ LoggerMessage ( EventIds . ServerDoesNotSupportSsl , LogLevel . Error , "Session {SessionId} requires SSL but server doesn't support it" ) ]
53
53
public static partial void ServerDoesNotSupportSsl ( ILogger logger , string sessionId ) ;
@@ -184,7 +184,7 @@ internal static partial class Log
184
184
public static partial void DetectedProxy ( ILogger logger , string sessionId ) ;
185
185
186
186
[ LoggerMessage ( EventIds . ChangingConnectionId , LogLevel . Debug , "Session {SessionId} changing connection id from {OldConnectionId} to {ConnectionId} and server version from {OldServerVersion} to {ServerVersion}" ) ]
187
- public static partial void ChangingConnectionId ( ILogger logger , string sessionId , long oldConnectionId , long connectionId , string oldServerVersion , string serverVersion ) ;
187
+ public static partial void ChangingConnectionId ( ILogger logger , string sessionId , int oldConnectionId , int connectionId , string oldServerVersion , string serverVersion ) ;
188
188
189
189
[ LoggerMessage ( EventIds . FailedToGetConnectionId , LogLevel . Information , "Session {SessionId} failed to get CONNECTION_ID(), VERSION()" ) ]
190
190
public static partial void FailedToGetConnectionId ( ILogger logger , Exception exception , string sessionId ) ;
0 commit comments