diff --git a/src/java/io/bazel/rulesscala/scalac/ScalaCInvoker.java b/src/java/io/bazel/rulesscala/scalac/ScalaCInvoker.java index dc4104d74..b6663e42a 100644 --- a/src/java/io/bazel/rulesscala/scalac/ScalaCInvoker.java +++ b/src/java/io/bazel/rulesscala/scalac/ScalaCInvoker.java @@ -76,7 +76,6 @@ private static List extractJar(String jarPath, String outputFolder) throws } File parent = f.getParentFile(); - System.out.println("Mkdir: " + parent); parent.mkdirs(); outputPaths.add(f); @@ -282,9 +281,9 @@ private static void processRequest(List args) throws Exception { } Map argMap = buildArgMap(args); - for (Map.Entry entry : argMap.entrySet()) { - System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue()); - } + // for (Map.Entry entry : argMap.entrySet()) { + // System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue()); + // } String outputName = getOrError(argMap, "JarOutput", "Missing required arg JarOutput"); String manifestPath = getOrError(argMap, "Manifest", "Missing required arg Manifest"); @@ -345,10 +344,10 @@ private static void processRequest(List args) throws Exception { files); MainClass comp = new MainClass(); - System.out.println("\n\n\n\nCompiler args:::"); - for(String arg: compilerArgs) { - System.out.println(" " + arg); - } + // System.out.println("\n\n\n\nCompiler args:::"); + // for(String arg: compilerArgs) { + // System.out.println(" " + arg); + // } comp.process(compilerArgs); ConsoleReporter reporter = (ConsoleReporter) reporterField.get(comp); @@ -372,9 +371,9 @@ private static void processRequest(List args) throws Exception { if(exitCode != 0) { throw new RuntimeException("ijar process failed!"); } - System.out.println("exitCode = " + exitCode); + // System.out.println("exitCode = " + exitCode); } - System.out.println("Success"); + // System.out.println("Success"); } }