REQ-2821: 添加一些日志

This commit is contained in:
yanglin 2024-08-06 09:12:55 +08:00
parent 78e9dc76a5
commit 42f7720d9b
2 changed files with 2 additions and 2 deletions

View File

@ -123,7 +123,7 @@ public class ProductFeatureRelationServiceImpl extends ServiceImpl<SaasProductMo
try {
saveOperateLogForUpdateFeatureRelationV2(request, req, saveList);
} catch (Exception e) {
log.warn("保存审计日志失败", e);
log.warn("error save operate log", e);
}
return ApiResult.ok(true);

View File

@ -202,7 +202,7 @@ public class ProductServiceImpl implements ProductService {
try {
saveOperateLogForUpdateProduct(req, productModule);
} catch (Exception e) {
log.warn("保存更新产品日志失败", e);
log.warn("error save operate log", e);
}
return ApiResult.ok(BeanMapper.copyBeanIgnoreNull(productModule, ProductVO.class));
}