From a384fab49075794138c98936dc15165c39c6e62c Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Sat, 9 Apr 2016 10:56:45 -0700 Subject: [PATCH] Log. --- .../src/main/kotlin/com/beust/kobalt/internal/GenericRunner.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/GenericRunner.kt b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/GenericRunner.kt index 09b0d787..60a9d242 100644 --- a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/GenericRunner.kt +++ b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/GenericRunner.kt @@ -68,7 +68,7 @@ abstract class GenericTestRunner : ITestRunnerContributor { val pb = ProcessBuilder(allArgs) pb.directory(File(project.directory)) pb.inheritIO() - log(1, "Running tests with classpath size ${classpath.size}") + log(2, "Running tests with classpath size ${classpath.size}") log(2, "Launching " + allArgs.joinToString(" ")) val process = pb.start() val errorCode = process.waitFor()