diff --git a/packages/fpmkunit/src/fpmkunit.pp b/packages/fpmkunit/src/fpmkunit.pp index 2c77c85cb8..7c833dc1d6 100644 --- a/packages/fpmkunit/src/fpmkunit.pp +++ b/packages/fpmkunit/src/fpmkunit.pp @@ -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;