This is an automated email from the ASF dual-hosted git repository.

gnodet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git


The following commit(s) were added to refs/heads/master by this push:
     new e8cb5218 Separate message and exception by newline (#1058)
e8cb5218 is described below

commit e8cb5218333767f5fca24aab07a1d5b413441865
Author: Guillaume Nodet <gno...@gmail.com>
AuthorDate: Tue Jul 16 17:15:53 2024 +0200

    Separate message and exception by newline (#1058)
    
    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.
    
    Co-authored-by: Stefan Oehme <st.oe...@gmail.com>
---
 .../src/main/java/org/mvndaemon/mvnd/logging/slf4j/MvndSimpleLogger.java | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/logging/src/main/java/org/mvndaemon/mvnd/logging/slf4j/MvndSimpleLogger.java 
b/logging/src/main/java/org/mvndaemon/mvnd/logging/slf4j/MvndSimpleLogger.java
index 2c11f78b..448df25a 100644
--- 
a/logging/src/main/java/org/mvndaemon/mvnd/logging/slf4j/MvndSimpleLogger.java
+++ 
b/logging/src/main/java/org/mvndaemon/mvnd/logging/slf4j/MvndSimpleLogger.java
@@ -102,6 +102,7 @@ public class MvndSimpleLogger extends MvndBaseLogger {
             return;
         }
         MessageBuilder builder = MessageUtils.builder();
+        builder.newline();
         builder.failure(t.getClass().getName());
         if (t.getMessage() != null) {
             builder.a(": ");

Reply via email to