From 94364cbe07b8bbab212be79848c04408be5fc42e Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Fri, 1 Jan 2016 10:19:11 -0800 Subject: [PATCH] Better message. --- .../src/main/kotlin/com/beust/kobalt/FileSpec.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/FileSpec.kt b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/FileSpec.kt index 3dabc39e..720b40c6 100644 --- a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/FileSpec.kt +++ b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/FileSpec.kt @@ -32,13 +32,13 @@ sealed class IFileSpec { val rel = Paths.get(directory).relativize(path) excludeMatchers.forEach { if (it.matches(rel)) { - log(3, "Removing ${rel.toFile()}") + log(3, "Excluding ${rel.toFile()}") return CONTINUE } } includeMatchers.forEach { if (it.matches(rel)) { - log(3, "Adding ${rel.toFile()}") + log(3, "Including ${rel.toFile()}") result.add(rel.toFile()) return CONTINUE }