This is an automated email from the ASF dual-hosted git repository. tibordigana pushed a commit to branch cli in repository https://gitbox.apache.org/repos/asf/maven-surefire.git
The following commit(s) were added to refs/heads/cli by this push: new e036e4c investigating IT 735 e036e4c is described below commit e036e4c262e9457d603f988c65a77666707572c1 Author: tibordigana <tibordig...@apache.org> AuthorDate: Sun Dec 22 14:49:14 2019 +0100 investigating IT 735 --- .../org/apache/maven/surefire/extensions/util/LineConsumerThread.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/surefire-extensions-api/src/main/java/org/apache/maven/surefire/extensions/util/LineConsumerThread.java b/surefire-extensions-api/src/main/java/org/apache/maven/surefire/extensions/util/LineConsumerThread.java index 109e541..0959f61 100644 --- a/surefire-extensions-api/src/main/java/org/apache/maven/surefire/extensions/util/LineConsumerThread.java +++ b/surefire-extensions-api/src/main/java/org/apache/maven/surefire/extensions/util/LineConsumerThread.java @@ -71,6 +71,8 @@ public final class LineConsumerThread extends Thread implements Closeable { String line = stream.nextLine(); isError |= stream.ioException() != null; + System.out.println( getClass().getSimpleName() + " [" + Thread.currentThread().getName() + "] " + + isError + " " + disabled + ": " + line ); if ( !isError && !disabled ) { consumer.consumeLine( line );