Remove "Ping server" debug message from translation

This commit is contained in:
Ansgar Becker
2012-12-05 05:35:46 +00:00
parent 9629739901
commit e9c549f3a0
2 changed files with 2 additions and 6 deletions

View File

@ -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 ..."

View File

@ -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