mirror of https://github.com/sbt/sbt.git
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:
parent
18882088cd
commit
d25dfd06ab
|
|
@ -303,7 +303,8 @@ object RemoteCache {
|
||||||
}
|
}
|
||||||
found = true
|
found = true
|
||||||
case Left(e) =>
|
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)
|
log.debug(e.getMessage)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue