We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
MojoExecutionException
1 parent 8d3220e commit 14e35c7Copy full SHA for 14e35c7
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Changelog
2
3
+## Unreleased
4
+
5
+### Improvements
6
7
+- Log `MojoExecutionException` when running CLI fails ([#171](https://github.com/getsentry/sentry-maven-plugin/pull/171))
8
9
## 0.7.0
10
11
### Dependencies
src/main/java/io/sentry/cli/SentryCliRunner.java
@@ -79,6 +79,7 @@ public SentryCliRunner(
79
80
return collectAndMaybePrintOutput(logFile, debugSentryCli);
81
} catch (MojoExecutionException e) {
82
+ logger.error("Error while attempting to run Sentry CLI: ", e);
83
if (logFile != null) {
84
final @Nullable String output = collectAndMaybePrintOutput(logFile, true);
85
if (output != null) {
0 commit comments