You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "mastermay (Jira)" <ji...@apache.org> on 2020/05/22 03:04:00 UTC

[jira] [Created] (CAMEL-15095) add a line break before stack trace detail

mastermay created CAMEL-15095:
---------------------------------

             Summary: add a line break before stack trace detail
                 Key: CAMEL-15095
                 URL: https://issues.apache.org/jira/browse/CAMEL-15095
             Project: Camel
          Issue Type: Improvement
          Components: camel-core
            Reporter: mastermay
             Fix For: 3.3.0


add a line break before stack trace detail to help print a more readable and friendly log.

the example below shows the changes:

before:

 
{code:java}
Failed delivery for (MessageId: xxx). Exhausted after delivery attempt: 1 caught: com.example.exception.SomeException: xxx

Message History
---------------
...

Stacktrace
--------------- com.example.exception.SomeException: xxx
    at ...
    at ...
{code}
after
{code:java}
Failed delivery for (MessageId: xxx). Exhausted after delivery attempt: 1 caught: com.example.exception.SomeException: xxx

Message History
---------------
...

Stacktrace
---------------
com.example.exception.SomeException: xxx
    at ...
    at ...{code}
 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)