Skip to content

Commit

Permalink
Log output about filter
Browse files Browse the repository at this point in the history
  • Loading branch information
eschlenz committed Oct 7, 2020
1 parent 14343ff commit 15a46b0
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,13 @@ class PipelineAopWeaverPlugin : Plugin<Project> {
project.javaCompileTask(variantNameCapitalized).classpath,
preWeaveJavaDir.get().asFile,
preWeaveKotlinDir.get().asFile
).filter { file ->
)
.also {
if (extension.filter.isNotEmpty()) {
project.aopLog("Weaving filter in ${project.name} is: ${extension.filter}")
}
}
.filter { file ->
file.canonicalPath.contains(extension.filter)
}
}
Expand Down

0 comments on commit 15a46b0

Please sign in to comment.