JAL-3599 Not redirecting STDOUT or STDERR just for build server debuggin
[jalview.git] / build.gradle
index d02b08c..23f3a7b 100644 (file)
@@ -4261,10 +4261,16 @@ task jalviewjsLaunchTest(type: Exec) {
     jalviewjsStderrLaunchFilename
   ])
 
+  /*
   standardOutput = new ByteArrayOutputStream()
   errorOutput = new ByteArrayOutputStream()
   
   doLast {
+    println("Chrome STDOUT: ")
+    println(standardOutput.toString())
+    println("Chrome STDERR: ")
+    println(errorOutput.toString())
+
     def found = false
     def stderr = errorOutput.toString()
     stderr.eachLine { line ->
@@ -4278,4 +4284,5 @@ task jalviewjsLaunchTest(type: Exec) {
       throw new GradleException("Could not find evidence of Desktop launch in JalviewJS.")
     }
   }
+  */
 }