Improve log for not found remote cache artifact

Before
remote cache not found for 0.0.0-7c40144bd1c774e6

After
remote cache artifact not found for org.gontard:sbt-test:0.0.0-7c40144bd1c774e6 Some(cached-compile)
This commit is contained in:
gontard 2022-02-25 16:14:43 +01:00
parent 18882088cd
commit d25dfd06ab
1 changed files with 2 additions and 1 deletions

View File

@ -303,7 +303,8 @@ object RemoteCache {
}
found = true
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)
}
}