Browse Source

* use stdout only

git-svn-id: trunk@11957 -
peter 17 years ago
parent
commit
2a621bbaba
1 changed files with 1 additions and 6 deletions
  1. 1 6
      packages/fpmkunit/src/fpmkunit.pp

+ 1 - 6
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;