Skip to content

Commit

Permalink
correctly detect full line for cleaner log
Browse files Browse the repository at this point in the history
  • Loading branch information
corneliusdavid committed Jul 19, 2024
1 parent f2351cc commit 2cbae8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ufrmInstallLog.pas
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ procedure TfrmInstallLog.Initialize;
procedure TfrmInstallLog.DosCmdGetItInstallNewLine(ASender: TObject;
const ANewLine: string; AOutputType: TOutputType);
begin
AddLog(ANewLine);
if AOutputType = otEntireLine then
AddLog(ANewLine);
end;

procedure TfrmInstallLog.DosCmdGetItInstallTerminated(Sender: TObject);
Expand Down

0 comments on commit 2cbae8b

Please sign in to comment.