Commit 9ac4d493 authored by 李健华's avatar 李健华

异常拦截器增加错误日志

parent cecbe143
##KA-26/2021-10-28
###在异常拦截器增加错误日志打印
```
package cn.quantgroup.xyqb.aspect.logcaller.LogCallHttpAspect.java 55
```
##KA-20/2021-09-29 ##KA-20/2021-09-29
###极光登陆返回用户是否已注册 ###极光登陆返回用户是否已注册
``` ```
......
...@@ -52,6 +52,7 @@ public class LogCallHttpAspect { ...@@ -52,6 +52,7 @@ public class LogCallHttpAspect {
try { try {
result = pjp.proceed(); result = pjp.proceed();
} catch (Throwable e) { } catch (Throwable e) {
log.error(e.getMessage());
hasException = true; hasException = true;
throw e; throw e;
} finally { } finally {
......
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