From f37ae2156377967af269e8ff1a744071af56e6ac Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Wed, 18 Nov 2015 05:16:37 -0800 Subject: [PATCH] Log. --- .../kotlin/com/beust/kobalt/plugin/kotlin/KotlinCompiler.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/beust/kobalt/plugin/kotlin/KotlinCompiler.kt b/src/main/kotlin/com/beust/kobalt/plugin/kotlin/KotlinCompiler.kt index c1a6df5e..675e15b0 100644 --- a/src/main/kotlin/com/beust/kobalt/plugin/kotlin/KotlinCompiler.kt +++ b/src/main/kotlin/com/beust/kobalt/plugin/kotlin/KotlinCompiler.kt @@ -63,7 +63,7 @@ class KotlinCompiler @Inject constructor(val localRepo : LocalRepo, * apparent if it happens. */ private fun invokeCompiler(cp: List, allArgs: Array): Boolean { - log(1, "Calling kotlinc " + allArgs.joinToString(" ")) + log(2, "Calling kotlinc " + allArgs.joinToString(" ")) val result : Boolean = if (true) { val classLoader = ParentLastClassLoader(cp.map { it.toURI().toURL() })