Skip to content

Commit

Permalink
remove some debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindberg committed Nov 6, 2022
1 parent d7ea459 commit 627420e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bleep-core/src/scala/bleep/CoursierResolver.scala
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ object CoursierResolver {
case None =>
val depNames = deps.map(_.baseModuleName.value)
val ctxLogger = logger.withContext(cachePath).withContext(depNames).withContext(versionCombo.toString)
ctxLogger.debug(s"coursier cache miss: $deps, $versionCombo")
ctxLogger.debug(s"coursier cache miss")
underlying.resolve(deps, versionCombo).map {
case changingResult if changingResult.fullDetailedArtifacts.exists { case (_, _, artifact, _) => artifact.changing } =>
ctxLogger.info("Not caching because result is changing")
Expand Down
2 changes: 1 addition & 1 deletion bleep-model/src/scala/bleep/BleepException.scala
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ object BleepException {
class ResolveError(
cause: CoursierError,
context: String
) extends BleepException(s"Error resolving dependencies for $context: ${cause.getMessage}", cause)
) extends BleepException(s"Error resolving dependencies for $context", cause)

class ArtifactResolveError(
cause: ArtifactError,
Expand Down

0 comments on commit 627420e

Please sign in to comment.