Merge pull request #6824 from gontard/remote_cache_not_found_log

Improve log for not found remote cache artifact
This commit is contained in:
eugene yokota 2022-02-26 20:43:00 -05:00 committed by GitHub
commit ba5f7527fe
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)
}
}