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.
1 parent 70bb58a commit 49bfefbCopy full SHA for 49bfefb
compiler/src/main/buildjar/com/google/devtools/build/buildjar/BazelEcjJavaBuilder.java
@@ -110,9 +110,10 @@ protected int build(
110
if (result.status() == Status.REQUIRES_FALLBACK) {
111
return 0;
112
}
113
- for (FormattedDiagnostic d : result.diagnostics()) {
114
- err.write(d.getFormatted() + "\n");
115
- }
+// disabled to prevent additional output of error message without much value (the errors are contained in the result output)
+// for (FormattedDiagnostic d : result.diagnostics()) {
+// err.write(d.getFormatted() + "\n");
116
+// }
117
err.write(result.output());
118
return result.isOk() ? 0 : 1;
119
0 commit comments