Merge pull request #7030 from gontard/backport_6824_to_1.8.x

[1.8.x] Improve log for not found remote cache artifact
This commit is contained in:
eugene yokota 2022-09-30 11:41:41 -04:00 committed by GitHub
commit e71e0825ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)
}
}