Skip to content

Commit

Permalink
Stack of exception in EnsoLibraryFeature is printed to System.err.
Browse files Browse the repository at this point in the history
The current printing is not visible on CI
  • Loading branch information
Akirathan committed Dec 23, 2024
1 parent 7bc8768 commit 5a44328
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public void beforeAnalysis(BeforeAnalysisAccess access) {
}
}
} catch (Exception ex) {
ex.printStackTrace();
ex.printStackTrace(System.err);
throw new IllegalStateException(ex);
}
System.err.println("Summary for polyglot import java:");
Expand Down

0 comments on commit 5a44328

Please sign in to comment.