You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/02/13 23:52:24 UTC

git commit: [flex-utilities] [refs/heads/develop] - only show echo statements

Updated Branches:
  refs/heads/develop 3c7467d3f -> dbe8be2dc


only show echo statements


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/dbe8be2d
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/dbe8be2d
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/dbe8be2d

Branch: refs/heads/develop
Commit: dbe8be2dcf00408e95cb33417249bc07789f9f3f
Parents: 3c7467d
Author: Alex Harui <ah...@apache.org>
Authored: Thu Feb 13 14:47:24 2014 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Thu Feb 13 14:47:24 2014 -0800

----------------------------------------------------------------------
 installer/src/InstallApacheFlex.mxml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/dbe8be2d/installer/src/InstallApacheFlex.mxml
----------------------------------------------------------------------
diff --git a/installer/src/InstallApacheFlex.mxml b/installer/src/InstallApacheFlex.mxml
index ee7c698..6e7334b 100644
--- a/installer/src/InstallApacheFlex.mxml
+++ b/installer/src/InstallApacheFlex.mxml
@@ -1392,7 +1392,7 @@ variables are not required because the locations of these pieces are known.
         
         private function output(s:String):void
         {
-            var isPublic:Boolean = true;
+            var isPublic:Boolean = false;
             var skipLog:Boolean = !debugMode;
             if (s.indexOf(":") != -1 && s.charAt(0) == "\n")
             {
@@ -1409,7 +1409,7 @@ variables are not required because the locations of these pieces are known.
             else if (s.indexOf("[echo] ") != -1)
             {
                 s = s.substr(s.indexOf("[echo] ") + 7);
-                //isPublic = false;
+                isPublic = true;
                 skipLog = false;
             }
             log(s, -1, isPublic, skipLog);