When the Test task is configured like this
test {
testLogging.showStandardStreams = true }
Gradle will output a preface such as this before outputting stdout:
org.petrovic.ss.AppTest > testCore STANDARD_OUT
hello
Is it possible to suppress this prefatory message, yet retain the actual stdout message?
Thanks.