Procházet zdrojové kódy

* use stdout only

git-svn-id: trunk@11957 -
peter před 17 roky
rodič
revize
2a621bbaba
1 změnil soubory, kde provedl 1 přidání a 6 odebrání
  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;