Separate message and exception by newline (#1055)

This was a small discrepancy to the output of vanilla Maven and made the output
hard to read, since the failure class name started right after the message without
any whitespace in between.
This commit is contained in:
Stefan Oehme
2024-07-16 17:16:12 +02:00
committed by GitHub
parent e12915de84
commit a5a5eb5782

View File

@@ -168,6 +168,7 @@ public class MvndSimpleLogger extends MvndBaseLogger {
return;
}
MessageBuilder builder = MessageUtils.buffer(sb);
builder.newline();
builder.failure(t.getClass().getName());
if (t.getMessage() != null) {
builder.a(": ");