From b07b5962f0c67afe0a2d6627011d7f9cc9a69b86 Mon Sep 17 00:00:00 2001 From: Tyler Benson Date: Thu, 7 Feb 2019 11:03:19 -0800 Subject: [PATCH] Add log output to help CI not time out for long tasks Muzzle takes a long time when run on a clean cache because it has to download a lot of dependencies. --- buildSrc/src/main/groovy/MuzzlePlugin.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/buildSrc/src/main/groovy/MuzzlePlugin.groovy b/buildSrc/src/main/groovy/MuzzlePlugin.groovy index 6ba5c9ac08..b7495a50ae 100644 --- a/buildSrc/src/main/groovy/MuzzlePlugin.groovy +++ b/buildSrc/src/main/groovy/MuzzlePlugin.groovy @@ -59,6 +59,7 @@ class MuzzlePlugin implements Plugin { .getMethod('assertInstrumentationMuzzled', ClassLoader.class, ClassLoader.class, boolean.class) assertionMethod.invoke(null, instrumentationCL, userCL, true) } + println "Muzzle executing for $project" } } def printReferences = project.task('printReferences') {