Commit 043fa3bf by 吕明尚

Merge branch 'dev' into test

parents bec43210 30934f6d
......@@ -95,9 +95,11 @@ public class QPServiceImplAspect {
couponLog.setStatus(YesNoEnum.yes.getDisplay_3());
couponLog.setMessage(outParams);
couponLog.setCreateTime(new Date());
couponLog.setNumber(TRY_NUMBER);
logger.info("优惠卷操作日志:{}", couponLog);
logger.info("开始异步执行新增正常日志");
logger.info("开始执行新增正常日志");
boolean isSaved = couponLogService.save(couponLog);
System.out.println(couponLog + "============================================================");
if (isSaved) {
logger.info("新增日志成功");
} else {
......@@ -141,7 +143,7 @@ public class QPServiceImplAspect {
logger.error("Error while processing exception log", e2);
} finally {
logger.info("优惠卷操作日志:{}", couponLog);
logger.info("开始异步执行新增错误日志");
logger.info("开始执行新增错误日志");
boolean i = couponLogService.save(couponLog);
if (i) {
logger.info("新增日志成功");
......
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