Skip to content

Commit 2cbae8b

Browse files
correctly detect full line for cleaner log
1 parent f2351cc commit 2cbae8b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ufrmInstallLog.pas

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ procedure TfrmInstallLog.Initialize;
7272
procedure TfrmInstallLog.DosCmdGetItInstallNewLine(ASender: TObject;
7373
const ANewLine: string; AOutputType: TOutputType);
7474
begin
75-
AddLog(ANewLine);
75+
if AOutputType = otEntireLine then
76+
AddLog(ANewLine);
7677
end;
7778

7879
procedure TfrmInstallLog.DosCmdGetItInstallTerminated(Sender: TObject);

0 commit comments

Comments
 (0)