From 658eba8ee96c4786d0ca3033fe4eecd0f1ca98b4 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Sat, 20 Feb 2016 15:14:58 -0800 Subject: [PATCH] Less chatty. --- .../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 e0688963..5966616c 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 @@ -28,12 +28,12 @@ sealed class IFileSpec { private fun isIncluded(includeMatchers: Glob, excludes: List, rel: Path) : Boolean { excludes.forEach { if (it.matches(rel)) { - log(2, "Excluding ${rel.toFile()}") + log(3, "Excluding ${rel.toFile()}") return false } } if (includeMatchers.matches(rel)) { - log(2, "Including ${rel.toFile().path}") + log(3, "Including ${rel.toFile().path}") return true } log(2, "Excluding ${rel.toFile()} (not matching any include pattern")