* use stdout only

git-svn-id: trunk@11957 -
This commit is contained in:
peter 2008-10-23 20:05:59 +00:00
parent d1aeec64bf
commit 2a621bbaba

View File

@ -2625,12 +2625,7 @@ end;
procedure TCustomInstaller.Log(Level: TVerboseLevel; const Msg: String);
begin
If Level in FLogLevels then
begin
if Level in [vlError,vlWarning] then
Writeln(StdErr,Msg)
else
Writeln(StdOut,Msg);
end;
Writeln(StdOut,Msg);
end;