mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 20:00:16 +08:00
Remove "Ping server" debug message from translation
This commit is contained in:
@ -3909,10 +3909,6 @@ msgstr "Login to %s:"
|
||||
msgid "Connecting to %s via %s, username %s, using password: %s ..."
|
||||
msgstr "Connecting to %s via %s, username %s, using password: %s ..."
|
||||
|
||||
#: dbconnection.pas:1530 dbconnection.pas:1553
|
||||
msgid "Ping server ..."
|
||||
msgstr "Ping server ..."
|
||||
|
||||
#: dbconnection.pas:1582
|
||||
msgid "Closing plink.exe process #%d ..."
|
||||
msgstr "Closing plink.exe process #%d ..."
|
||||
|
@ -1445,7 +1445,7 @@ end;
|
||||
|
||||
function TMySQLConnection.Ping(Reconnect: Boolean): Boolean;
|
||||
begin
|
||||
Log(lcDebug, _('Ping server ...'));
|
||||
Log(lcDebug, 'Ping server ...');
|
||||
if (FHandle=nil) or (mysql_ping(FHandle) <> 0) then begin
|
||||
// Be sure to release some stuff before reconnecting
|
||||
Active := False;
|
||||
@ -1461,7 +1461,7 @@ end;
|
||||
|
||||
function TAdoDBConnection.Ping(Reconnect: Boolean): Boolean;
|
||||
begin
|
||||
Log(lcDebug, _('Ping server ...'));
|
||||
Log(lcDebug, 'Ping server ...');
|
||||
if FActive then try
|
||||
FAdoHandle.Execute('SELECT 1');
|
||||
except
|
||||
|
Reference in New Issue
Block a user