Commit 2f35fa26 authored by 技术部-韩成龙's avatar 技术部-韩成龙

异常日志

parent e0fb86ea
......@@ -9,6 +9,7 @@ import com.quantgroup.asset.distribution.service.newrule.pojo.funds.FundCallBack
import com.quantgroup.asset.distribution.service.newrule.third.AuditResponce;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.lang3.exception.ExceptionUtils;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
......@@ -35,7 +36,7 @@ public class NewAssertController {
try {
coreFilter.coreHandle(auditResponce);
} catch (Exception e) {
log.info("assetsHandler | 有异常");
log.error("风控通知审核结果处理异常, e:{}", ExceptionUtils.getStackTrace(e));
return GlobalResponse.error(e.getMessage());
}
return GlobalResponse.create(AssetResponse.SUCCESS);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment