From 843f88565f63d738b0ea8b8782f8820a3c762bd9 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Thu, 10 Dec 2015 01:05:32 +0400 Subject: [PATCH] Log. --- src/main/kotlin/com/beust/kobalt/maven/RepoFinder.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/com/beust/kobalt/maven/RepoFinder.kt b/src/main/kotlin/com/beust/kobalt/maven/RepoFinder.kt index 666c2f9e..5c3e81f9 100644 --- a/src/main/kotlin/com/beust/kobalt/maven/RepoFinder.kt +++ b/src/main/kotlin/com/beust/kobalt/maven/RepoFinder.kt @@ -49,7 +49,7 @@ public class RepoFinder @Inject constructor(val executors: KobaltExecutors) { for (i in 0..Kobalt.repos.size - 1) { try { val result = cs.take().get(2000, TimeUnit.MILLISECONDS) - log(2, "Result for repo #$i: $result") + log(2, " Result for repo #$i: $result") if (result.found) { log(2, "Located $id in ${result.hostConfig.url}") return result @@ -70,7 +70,7 @@ public class RepoFinder @Inject constructor(val executors: KobaltExecutors) { inner class RepoFinderCallable(val id: String, val repo: HostConfig) : Callable { override fun call(): RepoResult { val repoUrl = repo.url - log(2, "Checking $repoUrl for $id") + log(2, " Checking $repoUrl for $id") val mavenId = MavenId(id) val groupId = mavenId.groupId