Authored by zhengwen.ge

去掉无用的日志

... ... @@ -80,7 +80,7 @@ public class ClickUnionRest {
}
clickUnion.info("addUnion with param is {}", request);
UnionResponse response = unionService.clickUnion(request);
log.info("addUnion with result is {}, and request is {}", response, request);
// log.info("addUnion with result is {}, and request is {}", response, request);
return response;
}
... ... @@ -112,8 +112,7 @@ public class ClickUnionRest {
// IUnionService service = SpringContextUtil.getBean(bean, IUnionService.class);
clickUnion.info("addCommonUnion request is {}",request);
UnionResponse response = unionService.clickUnion(request);
clickUnion.info("addUnion with result is {}, and request is {}", response, request);
// clickUnion.info("addUnion with result is {}, and request is {}", response, request);
return response;
}
... ...