1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00

Fixed log.

This commit is contained in:
Cedric Beust 2015-11-19 20:06:47 -08:00
parent 9f76eeabdc
commit 12ad7fc3ab

View file

@ -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) {