@@ -143,7 +143,7 @@ public void StartQuerying(MySqlCommand command)
143
143
public void FinishQuerying ( )
144
144
{
145
145
m_logArguments [ 1 ] = m_state ;
146
- Log . Debug ( "Session{0} entering FinishQuerying; SessionState = {1}" , m_logArguments ) ;
146
+ Log . Debug ( "Session{0} entering FinishQuerying; SessionState= {1}" , m_logArguments ) ;
147
147
bool clearConnection = false ;
148
148
lock ( m_lock )
149
149
{
@@ -356,7 +356,7 @@ public async Task<bool> TryResetConnectionAsync(ConnectionSettings cs, IOBehavio
356
356
if ( ServerVersion . Version . CompareTo ( ServerVersions . SupportsResetConnection ) >= 0 )
357
357
{
358
358
m_logArguments [ 1 ] = ServerVersion . OriginalString ;
359
- Log . Debug ( "Session{0} ServerVersion {1} supports reset connection; sending reset connection request" , m_logArguments ) ;
359
+ Log . Debug ( "Session{0} ServerVersion= {1} supports reset connection; sending reset connection request" , m_logArguments ) ;
360
360
await SendAsync ( ResetConnectionPayload . Instance , ioBehavior , cancellationToken ) . ConfigureAwait ( false ) ;
361
361
var payload = await ReceiveReplyAsync ( ioBehavior , cancellationToken ) . ConfigureAwait ( false ) ;
362
362
OkPayload . Create ( payload ) ;
@@ -370,7 +370,7 @@ public async Task<bool> TryResetConnectionAsync(ConnectionSettings cs, IOBehavio
370
370
{
371
371
// optimistically hash the password with the challenge from the initial handshake (supported by MariaDB; doesn't appear to be supported by MySQL)
372
372
m_logArguments [ 1 ] = ServerVersion . OriginalString ;
373
- Log . Debug ( "Session{0} ServerVersion {1} doesn't support reset connection; sending change user request" , m_logArguments ) ;
373
+ Log . Debug ( "Session{0} ServerVersion= {1} doesn't support reset connection; sending change user request" , m_logArguments ) ;
374
374
var hashedPassword = AuthenticationUtility . CreateAuthenticationResponse ( AuthPluginData , 0 , cs . Password ) ;
375
375
var payload = ChangeUserPayload . Create ( cs . UserID , hashedPassword , cs . Database , m_supportsConnectionAttributes ? s_connectionAttributes : null ) ;
376
376
await SendAsync ( payload , ioBehavior , cancellationToken ) . ConfigureAwait ( false ) ;
0 commit comments