Skip to content

Commit

Permalink
Clean up logger output message
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Nied <[email protected]>
  • Loading branch information
peternied committed Feb 13, 2024
1 parent 25e3ca9 commit e58acdb
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -652,16 +652,12 @@ protected static void checkStaticState(boolean afterClass) throws Exception {

if (statusData.getStackTraceElement() != null) {
final var messageSource = statusData.getStackTraceElement();

pw.println();
pw.println("Source:");
pw.println(messageSource.getFileName() + "@" + messageSource.getLineNumber());
}

if (statusData.getThrowable() != null) {
pw.println();
pw.println("Throwable:");
pw.println(statusData.getThrowable().toString());
statusData.getThrowable().printStackTrace(pw);
}
return sw.toString();
Expand Down

0 comments on commit e58acdb

Please sign in to comment.