From 12ad7fc3ab66e91bd7abc3af0d6000c60aaf435e Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Thu, 19 Nov 2015 20:06:47 -0800 Subject: [PATCH] Fixed log. --- src/main/kotlin/com/beust/kobalt/maven/ArtifactFetcher.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/beust/kobalt/maven/ArtifactFetcher.kt b/src/main/kotlin/com/beust/kobalt/maven/ArtifactFetcher.kt index ff4a2d9e..7aeb0c65 100644 --- a/src/main/kotlin/com/beust/kobalt/maven/ArtifactFetcher.kt +++ b/src/main/kotlin/com/beust/kobalt/maven/ArtifactFetcher.kt @@ -64,7 +64,7 @@ class ArtifactFetcher @Inject constructor(@Assisted("url") val url: String, log(2, "Done downloading, renaming $tmpFile to $file") Files.move(tmpFile, file) log(1, " Downloaded $url") - log(2, " to $tmpFile") + log(2, " to $file") val localMd5 = Md5.toMd5(file.toFile()) if (remoteMd5 != null && remoteMd5 != localMd5) {