打印日志

This commit is contained in:
Guoqs
2025-04-22 14:22:16 +08:00
parent 66a5790d1e
commit d406b9d651

View File

@@ -129,8 +129,10 @@ public class MemberGroupController extends BaseController {
ajaxResult = AjaxResult.error();
}
} catch (BusinessException e) {
logger.error("添加会员失败", e);
ajaxResult = AjaxResult.error(e.getMessage());
} catch (Exception e) {
logger.error("添加会员失败", e);
ajaxResult = AjaxResult.error("添加会员失败");
}
return ajaxResult;