Skip to content
Snippets Groups Projects
Commit b5ff62c2 authored by kaloyane's avatar kaloyane
Browse files

minor: keep the entire stack trace instead of just the first error line

SVN: 22102
parent 2288a9fb
No related branches found
No related tags found
Loading
......@@ -123,7 +123,7 @@ public final class LogMonitoringAppender extends AppenderSkeleton
return StringUtils.EMPTY;
} else
{
return info.getThrowableStrRep()[0];
return StringUtils.join(info.getThrowableStrRep(), "\n");
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment