I’m using Junit & Concordion. In our tests we write out some info level messages into the log (using java.util.logging.Logger) to monitor B2B tests while developing them. In jenkins I want to skip these messages so keep the console logs small and relevant.
We are using gradle 1.6.
Current gradle.build file: test {
include ‘**/IndexTest.*’
systemProperties[‘concordion.output.dir’] = “$reporting.baseDir/acceptance/”
outputs.upToDateWhen { false } // Force-run Selenium
logging.level = LogLevel.LIFECYCLE
testLogging.showStandardStreams = true
testLogging.showExceptions = true }