Skip to content

Commit

Permalink
Added exception logging on info level in case artifact could not be r…
Browse files Browse the repository at this point in the history
…etrieved
  • Loading branch information
galovics committed Mar 18, 2020
1 parent 788f4f4 commit ee9e521
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class CheckBreakingChangesTaskExecutor {
}
} catch (LatestArtifactDownloadException e) {
logger.quiet("Latest version of the artifact could not be retrieved from {} with {}:{}", options.mavenRepoUrl, options.groupId, options.artifactId)
logger.quiet("Assuming this is the first version of the artifact, skipping check for breaking changes")
logger.quiet("Assuming this is the first version of the artifact, skipping check for breaking changes", e)
}
}
}

0 comments on commit ee9e521

Please sign in to comment.