Skip to content

Commit 676c45c

Browse files
committed
remove stray debug lines
1 parent 08cb139 commit 676c45c

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

build-logic/src/main/groovy/org.apache.groovy-tested.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,13 +185,11 @@ Closure buildExcludeFilter(boolean legacyTestSuite) {
185185
// swallows the entirety of a project's test source set.
186186
gradle.taskGraph.whenReady { graph ->
187187
def testTask = tasks.named('test').get()
188-
logger.lifecycle("DEBUG[grape-warn] project=${project.path} hasTest=${graph.hasTask(testTask)}")
189188
if (!graph.hasTask(testTask)) return
190189
if (providers.systemProperty('junit.network').getOrNull()) return
191190
boolean hasGrapeTests = sourceSets.test.allSource.srcDirs.any {
192191
new File(it, 'groovy/grape').isDirectory()
193192
}
194-
logger.lifecycle("DEBUG[grape-warn] project=${project.path} hasGrapeTests=${hasGrapeTests}")
195193
if (hasGrapeTests) {
196194
logger.warn("WARNING: ${testTask.path} will skip groovy/grape/* tests; set -Djunit.network=true to include them")
197195
}

0 commit comments

Comments
 (0)