捕捉异常后log日志打印改为logger.error

This commit is contained in:
wangxin
2018-10-09 16:36:11 +08:00
parent 87c58379b8
commit 821132931a
26 changed files with 27 additions and 27 deletions

View File

@@ -95,7 +95,7 @@ public class DkBehaviorLogController extends BaseController{
logger.info("查询行为识别日志成功");
}
} catch (Exception e) {
logger.info("查询行为识别日志失败", e);
logger.error("查询行为识别日志失败", e);
addMessageLog(model, e.getMessage());
}
return "/log/manipulation/dkBehaviorList";