mirror of https://github.com/sbt/sbt.git
Merge pull request #6824 from gontard/remote_cache_not_found_log
Improve log for not found remote cache artifact
This commit is contained in:
commit
ba5f7527fe
|
|
@ -303,7 +303,8 @@ object RemoteCache {
|
||||||
}
|
}
|
||||||
found = true
|
found = true
|
||||||
case Left(e) =>
|
case Left(e) =>
|
||||||
log.info(s"remote cache not found for ${v}")
|
val classifier = seqa.map(_.classifier).mkString(" ")
|
||||||
|
log.info(s"remote cache artifact not found for $p $classifier")
|
||||||
log.debug(e.getMessage)
|
log.debug(e.getMessage)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue