Commit d1d4c5d33936b9a60c4b9ab3ee968cae46df5873
1 parent
817deae4
update
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/huaheng/framework/aspectj/ApiLogAspect.java
... | ... | @@ -177,7 +177,7 @@ public class ApiLogAspect |
177 | 177 | } |
178 | 178 | log.setResponseHeader(org.apache.commons.lang3.StringUtils.join(headerList, "\n")); |
179 | 179 | AjaxResult json = JSON.parseObject(body, AjaxResult.class); |
180 | - log.setHttpCode(String.valueOf(json.getCode())); | |
180 | + log.setRetCode(String.valueOf(json.getCode())); | |
181 | 181 | }catch (Exception e){ |
182 | 182 | e.printStackTrace(); |
183 | 183 | }finally { |
... | ... |