mirror of
https://github.com/apache/maven-mvnd.git
synced 2025-10-15 06:40:54 +00:00
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:
@@ -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(": ");
|
||||
|
Reference in New Issue
Block a user