From 5000368d6489bac5a35248cbd54ed757d1b82ca1 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Tue, 14 Mar 2017 18:40:07 -0700 Subject: [PATCH] Log. --- .../src/main/kotlin/com/beust/kobalt/JarGenerator.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/JarGenerator.kt b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/JarGenerator.kt index e2383e50..bbb1a093 100644 --- a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/JarGenerator.kt +++ b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/JarGenerator.kt @@ -43,7 +43,7 @@ class JarGenerator @Inject constructor(val dependencyManager: DependencyManager) } } else { - kobaltLog(2, "Directory $fromPath doesn't exist, not including it in the jar") + kobaltLog(2, " Directory $fromPath doesn't exist, not including it in the jar") } } if (includedSpecs.size > 0) { @@ -97,8 +97,6 @@ class JarGenerator @Inject constructor(val dependencyManager: DependencyManager) // If fatJar is true, add all the transitive dependencies as well: compile, runtime and dependent projects // if (jar.fatJar) { - context.logger.log(project.name, 2, "Finding included files for fat jar") - val seen = hashSetOf() @Suppress("UNCHECKED_CAST") val allDependencies = project.compileDependencies + project.compileRuntimeDependencies +