* Removed debug-code accidentally introduced in r19952 that fails to compile on some targets

git-svn-id: trunk@19958 -
This commit is contained in:
joost 2012-01-03 14:42:28 +00:00
parent bbe579131b
commit f995da2746

View File

@ -3400,7 +3400,7 @@ procedure TCustomInstaller.Log(Level: TVerboseLevel; Const Msg: String);
begin
If Level in FLogLevels then
begin
Writeln(StdOut,hexStr(GetThreadID,8),': ', Msg);
Writeln(StdOut, Msg);
Flush(StdOut);
end;
end;
@ -3817,7 +3817,7 @@ end;
procedure TBuildEngine.Error(const Fmt: String; const Args: array of const);
begin
Raise EInstallerError.CreateFmt(hexStr(GetThreadID,8)+ ': '+Fmt,Args);
Raise EInstallerError.CreateFmt(Fmt,Args);
end;