|
@@ -30,7 +30,8 @@ public class Bootstrap<K extends HandlerParam, V extends HandlerResult> implemen
|
|
|
first.handle(buildParam, buildResult);
|
|
first.handle(buildParam, buildResult);
|
|
|
result = Result.result(ResultStatus.SUCCESS);
|
|
result = Result.result(ResultStatus.SUCCESS);
|
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
|
- String errMsg = ExceptionUtil.stackTrace(e);
|
|
|
|
|
|
|
+ //String errMsg = ExceptionUtil.stackTrace(e);
|
|
|
|
|
+ String errMsg = e.getMessage();
|
|
|
if (errMsg.length() > 20_000) {
|
|
if (errMsg.length() > 20_000) {
|
|
|
errMsg = errMsg.substring(0, 20_000);
|
|
errMsg = errMsg.substring(0, 20_000);
|
|
|
}
|
|
}
|