[강운덕] [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:
Woonduk Kang
2013-03-18 08:28:31 +00:00
parent 46f5135d91
commit 48c99d2ffd
@@ -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();