diff --git a/src/main/java/com/nis/web/service/basics/AsnIpCfgService.java b/src/main/java/com/nis/web/service/basics/AsnIpCfgService.java index 85513ff3f..a83c7f529 100644 --- a/src/main/java/com/nis/web/service/basics/AsnIpCfgService.java +++ b/src/main/java/com/nis/web/service/basics/AsnIpCfgService.java @@ -235,7 +235,6 @@ public class AsnIpCfgService extends CrudService, AsnIpCfg> { public void saveAsnIpBatch(List cfgs){ //需要通过新增域接口新增的ip集合 List toAddRegionAsnIpCfgs=Lists.newArrayList(); - logger.warn("process configGroupInfo and delete IP start"); long start=System.currentTimeMillis(); for(AsnIpCfg cfg:cfgs) { if(Constants.VALID_YES==cfg.getIsValid().intValue()) { @@ -243,7 +242,6 @@ public class AsnIpCfgService extends CrudService, AsnIpCfg> { } } long end=System.currentTimeMillis(); - logger.warn("process configGroupInfo and delete IP finish,cost:"+(end-start)); this.save(cfgs); cfgs.clear(); splitAndSend(toAddRegionAsnIpCfgs,Constants.VALID_YES);