Skip to content

Commit e71e082

Browse files
authored
Merge pull request sbt#7030 from gontard/backport_6824_to_1.8.x
[1.8.x] Improve log for not found remote cache artifact
2 parents 2becadb + 89acd3e commit e71e082

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

main/src/main/scala/sbt/internal/RemoteCache.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,8 @@ object RemoteCache {
303303
}
304304
found = true
305305
case Left(e) =>
306-
log.info(s"remote cache not found for ${v}")
306+
val classifier = seqa.map(_.classifier).mkString(" ")
307+
log.info(s"remote cache artifact not found for $p $classifier")
307308
log.debug(e.getMessage)
308309
}
309310
}

0 commit comments

Comments
 (0)