Skip to content

Commit

Permalink
TMP: Debug CI failure
Browse files Browse the repository at this point in the history
  • Loading branch information
fmeum committed Oct 25, 2022
1 parent e743290 commit 6c63677
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ public static BlazeJavacResult compile(BlazeJavacArguments arguments) {

Status status = Status.ERROR;
StringWriter errOutput = new StringWriter();
errOutput.append(String.join(" ", arguments.javacOptions())).append("\n");
// TODO(cushon): where is this used when a diagnostic listener is registered? Consider removing
// it and handling exceptions directly in callers.
PrintWriter errWriter = new PrintWriter(errOutput);
Expand Down Expand Up @@ -181,7 +182,7 @@ public static BlazeJavacResult compile(BlazeJavacArguments arguments) {
}

return BlazeJavacResult.createFullResult(
status,
Status.ERROR,
filterDiagnostics(werror, diagnostics),
errOutput.toString(),
compiler,
Expand Down

0 comments on commit 6c63677

Please sign in to comment.