This is an automated email from the ASF dual-hosted git repository. paulk-asert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/groovy.git
commit 676c45ced61bcc79351095c94784215bf090ca75 Author: Paul King <[email protected]> AuthorDate: Sat May 9 05:32:55 2026 +1000 remove stray debug lines --- build-logic/src/main/groovy/org.apache.groovy-tested.gradle | 2 -- 1 file changed, 2 deletions(-) diff --git a/build-logic/src/main/groovy/org.apache.groovy-tested.gradle b/build-logic/src/main/groovy/org.apache.groovy-tested.gradle index 9e84287960..a044571ab6 100644 --- a/build-logic/src/main/groovy/org.apache.groovy-tested.gradle +++ b/build-logic/src/main/groovy/org.apache.groovy-tested.gradle @@ -185,13 +185,11 @@ Closure buildExcludeFilter(boolean legacyTestSuite) { // swallows the entirety of a project's test source set. gradle.taskGraph.whenReady { graph -> def testTask = tasks.named('test').get() - logger.lifecycle("DEBUG[grape-warn] project=${project.path} hasTest=${graph.hasTask(testTask)}") if (!graph.hasTask(testTask)) return if (providers.systemProperty('junit.network').getOrNull()) return boolean hasGrapeTests = sourceSets.test.allSource.srcDirs.any { new File(it, 'groovy/grape').isDirectory() } - logger.lifecycle("DEBUG[grape-warn] project=${project.path} hasGrapeTests=${hasGrapeTests}") if (hasGrapeTests) { logger.warn("WARNING: ${testTask.path} will skip groovy/grape/* tests; set -Djunit.network=true to include them") }
