Commit 895aa548 authored by yanzg's avatar yanzg

合并空行BUG

parent a9d872c6
......@@ -120,7 +120,11 @@ public class WebAspect extends BaseRequestAspect {
if (isInit) {
TokenHelper.remove();
}
responseLog(declaringType, TAG, url, clear, start, getRequestBody(joinPoint), result, ex, log);
try {
requestBody = getRequestBody(joinPoint);
} catch (Exception e) {
}
responseLog(declaringType, TAG, url, clear, start, requestBody, result, ex, log);
}
}
......
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