Merge pull request #5996 from xuwei-k/remote-cache-extract-message

improve remote cache extract log message
This commit is contained in:
eugene yokota 2020-10-21 14:32:18 -04:00 committed by GitHub
commit f217b59868
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -114,10 +114,10 @@ object RemoteCache {
findJar(classifier, v, jars) match { findJar(classifier, v, jars) match {
case Some(jar) => case Some(jar) =>
extractJar(art, jar) extractJar(art, jar)
log.info(s"remote cache artifact extracted for $classifier") log.info(s"remote cache artifact extracted for $p $classifier")
case None => case None =>
log.info(s"remote cache artifact not found for $classifier") log.info(s"remote cache artifact not found for $p $classifier")
} }
} }
found = true found = true