You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a very long stack trace is generated, it looks like the message that is sent to Slack is truncated. This means that the message sent to slack loses the 'end of code' termination, causing messages to be incorrectly formatted (three backticks displayed, message is not enclosed in a code block correctly) :
Can be reproduced with:
Exception exception = new RuntimeException();
for (int i = 0; i < 20; i++) {
exception.addSuppressed(new RuntimeException());
}
LOGGER.error("Long exception", exception);
The text was updated successfully, but these errors were encountered:
When a very long stack trace is generated, it looks like the message that is sent to Slack is truncated. This means that the message sent to slack loses the 'end of code' termination, causing messages to be incorrectly formatted (three backticks displayed, message is not enclosed in a code block correctly) :
Can be reproduced with:
The text was updated successfully, but these errors were encountered: