mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-15 15:55:54 +10:00
[강운덕] [LUCYSUS-1744] exception 레코딩 사이즈가 너무 작아 256으로 변경함.
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@1345 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
@@ -198,7 +198,7 @@ public final class Trace {
|
||||
public void recordException(Object result) {
|
||||
if (result instanceof Throwable) {
|
||||
Throwable th = (Throwable) result;
|
||||
String drop = StringUtils.drop(th.getMessage());
|
||||
String drop = StringUtils.drop(th.getMessage(), 256);
|
||||
recordAttribute(AnnotationKey.EXCEPTION, drop);
|
||||
|
||||
Span span = getCallStack().getSpan();
|
||||
|
||||
Reference in New Issue
Block a user