You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by jm...@apache.org on 2006/07/07 20:13:35 UTC

svn commit: r419969 - /incubator/xap/trunk/tools/src/JsCompress.java

Author: jmargaris
Date: Fri Jul  7 13:13:34 2006
New Revision: 419969

URL: http://svn.apache.org/viewvc?rev=419969&view=rev
Log:
Less verbose output

Modified:
    incubator/xap/trunk/tools/src/JsCompress.java

Modified: incubator/xap/trunk/tools/src/JsCompress.java
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/tools/src/JsCompress.java?rev=419969&r1=419968&r2=419969&view=diff
==============================================================================
--- incubator/xap/trunk/tools/src/JsCompress.java (original)
+++ incubator/xap/trunk/tools/src/JsCompress.java Fri Jul  7 13:13:34 2006
@@ -82,7 +82,7 @@
 				try{
 					File destinationFile = new File(outputDirectory, file.getName());
 					FileOutputStream outputStream = new FileOutputStream(destinationFile);
-					System.out.println(file + "\n\t" + destinationFile + "\n");
+					System.out.println(file + "   --->   " + destinationFile + "\n");
 					
 					
 					//the way this works is pretty strange. If you call the main
@@ -100,7 +100,6 @@
 					//streams in the same thread.
 					
 					String execString = "java -jar " + "\""+ s_rhinoPath + "\"" + " -w -c " +  "\""+ file.getAbsolutePath() +  "\"";
-					System.out.println("exec string:" + execString);
 					
 					Process p = Runtime.getRuntime().exec(execString);