JAL-3599 Not redirecting STDOUT or STDERR just for build server debuggin
[jalview.git] / build.gradle
index 7fa55c0..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 ->
@@ -4275,12 +4281,8 @@ task jalviewjsLaunchTest(type: Exec) {
       }
     }
     if (!found) {
-      println("Chrome STDOUT: ")
-      println(standardOutput.toString())
-      println("Chrome STDERR: ")
-      println(errorOutput.toString())
-      
       throw new GradleException("Could not find evidence of Desktop launch in JalviewJS.")
     }
   }
+  */
 }