From 48c99d2ffda05da2adca7901f0ae34828d6caeb1 Mon Sep 17 00:00:00 2001 From: Woonduk Kang Date: Mon, 18 Mar 2013 08:28:31 +0000 Subject: [PATCH] =?UTF-8?q?[=EA=B0=95=EC=9A=B4=EB=8D=95]=20[LUCYSUS-1744]?= =?UTF-8?q?=20exception=20=EB=A0=88=EC=BD=94=EB=94=A9=20=EC=82=AC=EC=9D=B4?= =?UTF-8?q?=EC=A6=88=EA=B0=80=20=EB=84=88=EB=AC=B4=20=EC=9E=91=EC=95=84=20?= =?UTF-8?q?256=EC=9C=BC=EB=A1=9C=20=EB=B3=80=EA=B2=BD=ED=95=A8.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@1345 84d0f5b1-2673-498c-a247-62c4ff18d310 --- src/main/java/com/profiler/context/Trace.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/profiler/context/Trace.java b/src/main/java/com/profiler/context/Trace.java index 78ddb3122..1160600bb 100644 --- a/src/main/java/com/profiler/context/Trace.java +++ b/src/main/java/com/profiler/context/Trace.java @@ -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();