From 1745194f5f887dbf46f08400fe32c99f0ff0d967 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Wed, 22 Jun 2016 01:29:21 -0800 Subject: [PATCH] Log level. --- .../com/beust/kobalt/maven/aether/ConsoleTransferListener.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/maven/aether/ConsoleTransferListener.kt b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/maven/aether/ConsoleTransferListener.kt index 108cd7a1..ebd21a2c 100644 --- a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/maven/aether/ConsoleTransferListener.kt +++ b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/maven/aether/ConsoleTransferListener.kt @@ -101,7 +101,7 @@ class ConsoleTransferListener @JvmOverloads constructor(out: PrintStream? = null transferCompleted(event) if (event.exception !is MetadataNotFoundException) { - if (KobaltLogger.LOG_LEVEL > 1) { + if (KobaltLogger.LOG_LEVEL > 2) { event.exception.printStackTrace(out) } }