Skip to content

Commit

Permalink
Issue #521: make debug output more readable
Browse files Browse the repository at this point in the history
  • Loading branch information
ansgarbecker committed Apr 16, 2019
1 parent f870c81 commit 975e152
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/dbconnection.pas
Expand Up @@ -930,7 +930,7 @@ procedure TPlink.Connect;
ErrorText := ReadPipe(FErrorPipe);
if (OutText <> '') or (ErrorText <> '') then begin
ReturnedSomethingAt := Waited;
FConnection.Log(lcDebug, 'PLink OutText: "'+OutText+'" ErrorText: "'+ErrorText+'"');
FConnection.Log(lcDebug, Format('PLink output after %d ms. OutPipe: "%s" ErrorPipe: "%s"', [Waited, OutText, ErrorText]));
end;

if OutText <> '' then begin
Expand Down

0 comments on commit 975e152

Please sign in to comment.